-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecipes.html
49 lines (46 loc) · 1.6 KB
/
recipes.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
<!DOCTYPE html>
<!--
Hi! Thanks for checking out this website.
I made it myself!
This website was made by hand.
I intentionally haven't minified anything so you can see how it all fits together.
-->
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="author" content="Clayton Ramsey" />
<meta name="description" content="This is where I keep my recipes." />
<title>Recipes</title>
<link rel="canonical" href="https://claytonwramsey.com/recipes" />
<link rel="stylesheet" type="text/css" href="/assets/main.css" />
<link rel="icon" href="/assets/img/favicon.ico" />
</head>
<body>
<header>
<nav>
<a href="/">Home</a>
<a href="/about">About</a>
<a href="/cv">CV</a>
<a href="/blog">Blog</a>
<a href="/recipes">Recipes</a>
</nav>
<h1>Recipes</h1>
</header>
<main>
<p>
This is where I keep my recipes. If you make one, feel free to email me a picture and tell me how it tastes.
</p>
<ul>
<li>
<a href="/recipes/bens-pumpkin-cookies">Ben's Pumpkin Cookies</a>
</li>
<li><a href="/recipes/chocolate-chip-cookies">Chocolate Chip Cookies</a></li>
<li><a href="/recipes/chicken-tikka-masala">Chicken Tikka Masala</a></li>
<li><a href="/recipes/cinnamon-roll-cookies">Cinnamon Roll Cookies</a></li>
<li><a href="/recipes/gregs-pie-crust">Greg's Pie Crust</a></li>
<li><a href="/recipes/jambalaya">Jambalaya</a></li>
<li><a href="/recipes/tomato-sauce">Tomato Sauce</a></li>
</ul>
</main>
</body>
</html>