Some checks are pending
Build and push Docker image / build-and-push (push) Waiting to run
20 lines
559 B
HTML
20 lines
559 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="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>
|