Some checks are pending
Build and push Docker image / build-and-push (push) Waiting to run
21 lines
739 B
HTML
21 lines
739 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Pizza Recipes</title>
|
|
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>%F0%9F%8D%95</text></svg>">
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<header class="site-header">
|
|
<h1>Pizza Recipes</h1>
|
|
<p>Pick a dough, dial in your hydration and batch size.</p>
|
|
</header>
|
|
<main>
|
|
<nav class="recipe-picker" id="recipe-picker"></nav>
|
|
<div id="recipe-panel"><p class="loading">Loading recipes…</p></div>
|
|
</main>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|