-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (40 loc) · 1.48 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Beer Recipes</title>
<link rel="stylesheet" href="css/site.css">
<script src="lib/markdown-it-14.0.0.min.js"></script>
<script type="module" src="js/main.js"></script>
</head>
<body>
<div id="page-wrapper">
<div id="recipe-list-container">
<div class="header">
<h1>Beer Recipes</h1>
<input id="search-box" type="text" style="width:225px;" placeholder="title search"/>
</div>
<ul id="recipe-list"></ul>
</div>
<div id="recipe-container">
<div id="title-wrapper">
<div>
<a id="back-link" href="./">
<svg xmlns="http://www.w3.org/2000/svg" id="back-icon" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 19l-7-7m0 0l7-7m-7 7h18" />
</svg>
</a>
</div>
<div style="flex-grow: 1;">
<h1 id="title"></h1>
</div>
</div>
<div id="description"></div>
<div id="ingredients-container"></div>
<div id="instructions-container"></div>
<div id="notes-container"></div>
</div>
</div>
</body>
</html>