-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (57 loc) · 2.32 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<title>Roast Log</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css" type="text/css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.18/c3.min.css" type="text/css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto|Roboto+Slab">
<link rel="stylesheet" href="style/style.css" type="text/css">
<link rel="stylesheet" href="style/tabs.css" type="text/css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js" charset="utf-8"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/c3/0.4.18/c3.min.js"></script>
<script src="script/util.js"></script>
</head>
<body>
<header id="site-header">
<img src="img/Coffee_beans_by_gnokii.svg" alt="" id="site-logo">
<h1>Roast Log</h1>
</header>
<main id="site-content" class="tabs-container">
<nav id="site-nav" class="tabs">
<ul>
<li><a href="#search" class="active">Search</a>
<li><a href="#roast">Roast</a>
</ul>
</nav>
<section id="search" class="active">
<form>
<div class="flex-container">
<select id="search-field" name="field">
<option value="ALL" selected="selected">-- List All --</option>
<option value="date">Roast date</option>
<option value="coffee">Coffee</option>
</select>
<input type="search" id="search-query" name="q" placeholder="Query..." size="10" disabled="disabled">
<button type="submit" id="search-submit">Search</button>
</div>
</form>
<ul id="results">
</ul>
</section>
<section id="roast">
<h2 id="roast-header"></h2>
<div id="roast-data">
</div>
<div id="roast-chart"></div>
</section>
</main> <!-- #site-content -->
<footer id="site-footer">
<small>© copyright 2018, Chet Gray</small>
</footer>
<script src="script/tabs.js"></script>
<script src="script/main.js"></script>
</body>
</html>