-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (36 loc) · 1.43 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Stationboard</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="fonts/fonts.css">
</head>
<body>
<section class="container">
<header class="header-bar">
<div class="search-container">
<input class="search-input js-search" placeholder="Search for bus stops..." autofocus>
<button class="search-button"></button>
</div>
</header>
<section class="scroll-container">
<section class="search-results">
</section>
<h1 class="favorites-title">Favorites</h1>
<section class="favorites">
</section>
<footer class="footer">
<small>A project by <a href="http://tobiasbernard.com/">Tobias Bernard</a> & <a href="http://juliansparber.com/">Julian Sparber</a>.</small>
<small>This program is free software and released under the GNU AGPL. You can get the code on <a href="https://github.com/realnumbers/stationboard">Github</a>.</small>
</footer>
</section>
</section>
<script src="lib/jquery.min.js"></script>
<script src="script.js"></script>
</body>
</html>