29 lines
902 B
HTML
29 lines
902 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ title or 'Doris Kitchen' }}</title>
|
|
<link rel="stylesheet" href="/static/app.css?v=5">
|
|
</head>
|
|
<body>
|
|
<header class="site-header">
|
|
<div>
|
|
<p class="eyebrow">Doris Kitchen</p>
|
|
<h1>Household Recipe Queue</h1>
|
|
<p class="lede">Pick recipes, bin bad ones, learn the household taste, and build a cheaper meal week without wasting half a packet of mince. Ha ha.</p>
|
|
</div>
|
|
<nav>
|
|
<a href="/">Queue</a>
|
|
<a href="/search">Search</a>
|
|
<a href="/planner">Planner</a>
|
|
<a href="/failures">Failures</a>
|
|
</nav>
|
|
</header>
|
|
<main class="page-shell">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
<script src="/static/app.js?v=5"></script>
|
|
</body>
|
|
</html>
|