-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (67 loc) · 2.33 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
66
67
<!DOCTYPE html>
<html>
<head>
<title>Recipe Index</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="A simplified index of common recipes without long explanations or graphics."
class="meta-description" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css" />
<link rel="icon" href="data:image/svg+xml,
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 105 55'><text y='.75em' font-size='75'>📖</text></svg>
" />
</head>
<body>
<div class="section">
<div class="container">
<header>
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item is-paddingless" href="index.html">
<span class="button is-black branding">Recipe Index</span>
</a>
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false"
data-target="navbar-actual">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbar-actual" class="navbar-menu">
<div class="navbar-start">
<a href="https://github.com/mookman288/recipe-index/" target="_blank" class="navbar-item">
Github
</a>
</div>
<div class="navbar-end">
<form method="get" action="index.html">
<div class="field has-addons">
<div class="control is-expanded">
<input id="s" name="s" type="text" class="input" placeholder="Search…" />
</div>
<div class="control">
<input type="submit" class="button is-primary" value="🔍" />
</div>
</div>
</form>
</div>
</div>
</nav>
</header>
<section class="content">
<h1 class="title">Index of Recipes</h1>
<div id="notices"></div>
<p id="count"></p>
<div id="content" class="columns is-multiline"></div>
<noscript>You must have JavaScript enabled for this application to work.</noscript>
</section>
<footer class="has-text-centered">
<a href="?c=true">Fetch New Recipes</a>
<br />
<img class="qr-code" />
</footer>
</div>
</div>
<script src="js/app.js"></script>
</body>
</html>