2020-02-29 16:07:24 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2020-03-01 09:21:52 +00:00
|
|
|
<link rel='stylesheet' href='/assets/style.css'>
|
|
|
|
<script async src='/assets/script.js'></script>
|
2020-03-05 09:27:35 +00:00
|
|
|
<title>{% if page.layout == "recipe" %}{{ page.name }}{% else %}{{ page.title }}{% endif %}</title>
|
2020-02-29 16:07:24 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
2020-03-05 09:42:10 +00:00
|
|
|
{% unless layout.custom_h1 -%}<h1>{{ page.title }}</h1>{%- endunless %}
|
2020-03-01 07:36:48 +00:00
|
|
|
<div id='main'>
|
2020-02-29 20:26:37 +00:00
|
|
|
{{ content }}
|
|
|
|
</div>
|
|
|
|
|
2020-03-01 09:50:53 +00:00
|
|
|
{% include footer.html -%}
|
2020-02-29 20:26:37 +00:00
|
|
|
|
2020-02-29 16:07:24 +00:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|