forked from drinoff/field-conspiracy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
117 lines (110 loc) · 4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="/assets/logo.png" />
<link rel="stylesheet" href="/styles.css" />
<script src="https://kit.fontawesome.com/3dfe3c4d20.js" crossorigin="anonymous"></script>
<title>Field Conspiracy</title>
</head>
<body>
<header>
<div class="authButtons">
<a href="/createRelease"><button id="adminPanel">New Release</button></a
>
<a href="/createArtist"
><button id="adminPanel">New Artist</button></a
>
<a href="/createCreative"
><button id="adminPanel">New Creative</button></a
>
<a href="/createBlogArticle"
><button id="adminPanel">New Blog Article</button></a
>
<a href="/createShow"
><button id="adminPanel">New Show</button></a
>
<button id="logout">Logout</button>
</div>
<nav class="headerNav">
<h1>Field Conspiracy</h1>
<div class="navWrapper">
<a href="/releases">
<li>Releases</li>
</a>
<a href="/artists">
<li>Artists</li>
</a>
<a href="/creatives">
<li class="creatives">Creatives</li>
</a>
<a href="/">
<img class="logo" src="/assets/logo.png" alt="logo" /></a>
<a href="/blog">
<li>Blog</li>
</a>
<a href="/shows">
<li>Shows</li>
</a>
<a href="/contact">
<li class="contact">Contact</li>
</a>
</div>
</nav>
<!-- mobile -->
<nav class="mobileNav">
<a href="/">
<img id="mobileLogo" class="mobileLogo" src="/assets/logo.png" alt="logo" /></a>
<h1>Field Conspiracy</h1>
<i class="fas fa-bars icon-2x"></i>
</nav>
<div class="navWrapperMobile">
<a href="/releases">
<li>Releases</li>
</a>
<a href="/artists">
<li>Artists</li>
</a>
<a href="/creatives">
<li class="creatives">Creatives</li>
</a>
<a href="/blog">
<li>Blog</li>
</a>
<a href="/shows">
<li>Shows</li>
</a>
<a href="/contact">
<li>Contact</li>
</a>
<i class="fas fa-times"></i>
</div>
</header>
<main></main>
<footer class="footer">
<img class="soundWeave" src="/assets/beforeFooter.png" alt="" />
<p>Follow Us on:</p>
<p class="social">
<a href="http://fieldconspiracy.bandcamp.com" target="_blank"><i class="fab fa-bandcamp"></i
></a>
<a href="https://soundcloud.com/fieldconspiracy" target="_blank"><i class="fab fa-soundcloud"></i
></a>
<!-- <i class="fab fa-spotify"></i> -->
<!-- <i class="fab fa-youtube"></i> -->
<a href="https://www.facebook.com/FieldConspiracy/" target="_blank"><i class="fab fa-facebook"></i
></a>
<a href="https://www.instagram.com/fieldconspiracy/" target="_blank"><i class="fab fa-instagram"></i
></a>
<!-- <img class="fab" src="/assets/raIcon.png" alt=""> -->
</p>
<a class="admin" href="/login">Administration</a>
<a class="admin" href="/privacy">Privacy Policy</a>
<p class="copyright">
© 2021 by Field Conspiracy. All rights reserved
</p>
</footer>
<script src="/src/app.js" type="module"></script>
</body>
</html>