recipe-site/_layouts/default.html

21 lines
278 B
HTML
Raw Normal View History

2020-02-29 16:07:24 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
2020-02-29 19:01:50 +00:00
<link rel='stylesheet' href='/style.css'>
2020-03-01 06:47:33 +00:00
<script async src='/script.js'></script>
2020-02-29 16:07:24 +00:00
<title>{{ page.title }}</title>
</head>
<body>
2020-02-29 20:26:37 +00:00
<div>
{{ content }}
</div>
{%- include footer.html -%}
2020-02-29 16:07:24 +00:00
</body>
</html>