-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathindex.html
More file actions
125 lines (110 loc) · 4.31 KB
/
Copy pathindex.html
File metadata and controls
125 lines (110 loc) · 4.31 KB
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
118
119
120
121
122
123
124
125
<!--
Largely based on a simple starter template.
https://materializecss.com/templates/starter-template/preview.html
See the files in index_progress for a progressive build of this file.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>HackBCA 20XX</title>
<link rel="shortcut icon" type="image/jpg" href="/images/favicon.ico" />
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="/styles/materialize.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<!-- Shared site-wide CSS -->
<link rel="stylesheet" href="/styles/main.css">
<!-- Page specific CSS -->
<link rel="stylesheet" href="/styles/index.css">
</head>
<body>
<!-- https://materializecss.com/navbar.html -->
<header>
<nav>
<div class="nav-wrapper">
<img class="hide-on-small-and-down" src="/images/bca-logo-transparent.png">
<a href="/" class="brand-logo">HackBCA 20XX</a>
<a href="#" data-target="mobile-nav" class="sidenav-trigger"><i class="material-icons">menu</i></a>
<ul id="desktop-nav" class="right hide-on-med-and-down">
<li><a href="/events.html"><i class="material-icons left">event</i>Events</a></li>
<li><a href="/attendees.html"><i class="material-icons left">people</i>Attendees</a></li>
<li><a href="/projects.html"><i class="material-icons left">build</i>Projects</a></li>
<li><a href="/login.html" class="btn">Login / Register</a></li>
</ul>
</div>
</nav>
<ul id="mobile-nav" class="sidenav">
<li><a href="/events.html"><i class="material-icons left">event</i>Events</a></li>
<li><a href="/attendees.html"><i class="material-icons left">people</i>Attendees</a></li>
<li><a href="/projects.html"><i class="material-icons left">build</i>Projects</a></li>
<li><a href="/login.html" class="btn">Login / Register</a></li>
</ul>
</header>
<main>
<!-- https://materializecss.com/cards.html -->
<div class="container">
<h1>Get ready for HackBCA!</h1>
<div class="row">
<div class="col s5">
<img class="responsive-img" src="/images/phoenix.png" alt="Blue and Red phoenix silhouette">
</div>
<div class="col s7 ">
<div class="card blue-grey darken-1">
<div class="card-content white-text">
<span class="card-title">MM DD-DD 20XX @ BCA</span>
<p>HackBCA will return soon!</p>
<p>Visit frequently to see updates, including planned events and projects from other attendees.</p>
<p>Log in with Google to register, plan your schedule, and propose or volunteer for projects.</p>
</div>
<div class="card-action">
<a href="/events.html">See what's happening (Events)</a>
</div>
<div class="card-action">
<a href="/attendees.html">See who's coming (Attendees)</a>
</div>
<div class="card-action">
<a href="/projects.html">See what's being built (Projects)</a>
</div>
</div>
</div>
</div>
</div>
</main>
<!-- https://materializecss.com/footer.html -->
<footer class="page-footer">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">Sponsors</h5>
<p>hackBCA is brought to you by:</p>
<ul>
<li>BCA PPO</li>
<li>Tech-Pa</li>
<li><Corporate Sponsors></li>
<li>Wanna join this list? Sponsor us!</li>
</ul>
</div>
<div class="col l4 offset-l2 s12">
<h5 class="white-text">Contact Us</h5>
<ul>
<li>Twitter: @hackbca</li>
<li>Instagram: @hackbca</li>
<li>Facebook: @hackbca</li>
<li>Email: hackbca@_____</li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
© 2021 Copyright Text
<a class="grey-text text-lighten-4 right" href="#!">More Links</a>
</div>
</div>
</footer>
<!-- Compiled and minified Materialize JavaScript -->
<script src="/js/materialize.min.js"></script>
<!-- initialize Materialize elements -->
<script> M.AutoInit();</script>
</body>
</html>