pizza_broodjeaap_net/index.html
David 07c17d1359
Some checks are pending
Build and push Docker image / build-and-push (push) Waiting to run
Initial copy
2026-08-20 21:26:16 +02:00

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>