-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
64 lines (60 loc) · 1.52 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
<!DOCTYPE html>
<html>
<head>
<title>time2temp</title>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, user-scalable=no"
/>
<link rel="icon" href="data:," />
<link rel="stylesheet" href="time2temp-theme.css" />
</head>
<body>
<header>
<a href="/"><img src="logo.png" /></a>
</header>
<main>
<h1>Meats</h1>
<p>Cheat sheet for grill/smoker temperature organized by meat cut.</p>
<hr />
<input
id="searchTerm"
onkeyup="searchMeats()"
type="text"
placeholder="Filter by meat cut."
/>
<hr />
<table id="meat-list">
<thead>
<th>Cut</th>
<th>Family</th>
<th>Smoker / Grill</th>
<th>Relative Time</th>
<th alt="Target internal meat temp">Target Temp</th>
</thead>
<tbody id="meat-list-body"></tbody>
</table>
</main>
<footer>
<ul>
<li>
<a href="https://www.twitter.com/natebross">Twitter</a>
</li>
<li>
<a href="https://github.com/fuzzzerd/time2temp">GitHub</a>
</li>
<li>
<a href="https://www.linkedin.com/in/natebross">LinkedIn</a>
</li>
</ul>
<ul>
<li>
<a href="https://www.brosstribe.com/">© Nate Bross</a>
</li>
<li>Design: <a href="https://html5up.net">HTML5 UP</a></li>
</ul>
</footer>
<script src="index.js"></script>
</body>
</html>