-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathallEvents.html
More file actions
32 lines (26 loc) · 913 Bytes
/
allEvents.html
File metadata and controls
32 lines (26 loc) · 913 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>events | erika bell</title>
<meta name="Erika Bell" content="Erika Bell's Events">
<link rel="stylesheet" href=style.css>
<!-- TODO: won't need performances Nav? will make all one static page -->
</head>
<html>
<body>
<header-component></header-component>
<div class="body-container">
<ul class='year-nav'></ul>
<h1 class="events-header">
Events
<span class='background-year'></span>
</h1>
<div id="list-container"></div>
<footer-component></footer-component>
</body>
<script src='./papaparse.js' type="text/javascript" defer></script>
<script src="./allEvents.js" type="text/javascript" defer></script>
<script src="./components/Header.js" type="text/javascript" defer></script>
<script src="./components/Footer.js" type="text/javascript" defer></script>
</html>