-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents.html
executable file
·40 lines (33 loc) · 1.15 KB
/
events.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Events | Hoxie Ave</title>
<!-- The style.css file allows you to change the look of your web pages.
If you include the next line in all your web pages, they will all share the same look.
This makes it easier to make new pages for your site. -->
<link href="/css/style.css" rel="stylesheet" type="text/css" media="all">
<!--FIREBASE-->
<script src="https://cdn.firebase.com/js/client/2.2.4/firebase.js"></script>
<!--REACT-->
<script src="https://fb.me/react-0.13.3.js"></script>
<!-- ReactFire -->
<script src="https://cdn.firebase.com/libs/reactfire/0.4.0/reactfire.min.js"></script>
</head>
<body>
<nav>
<div id="nav-container">
<div><a href="/">Home</a></div>
<div><a href="/chat.html">Hoxie Chat</a></div>
<div><a href="/events.html">Events</a></div>
<div><a href="/weather.html">Weather</a></div>
</div>
</nav>
<h1>Hoxie Events</h1>
<div id="events">
Loading...
</div>
<!--EVENT SCRIPT-->
<script src="/js/events.js"></script>
</body>
</html>