1
Fork 0
blog/_layouts/simple.liquid

21 lines
295 B
Plaintext
Raw Normal View History

2017-07-09 12:18:22 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
2018-01-01 19:04:05 +00:00
{% include "_head.liquid" %}
2017-07-09 12:18:22 +00:00
</head>
<body>
2018-01-01 19:04:05 +00:00
{% include "_menu.liquid" %}
2017-07-09 12:18:22 +00:00
<main>
<article>
2018-01-01 19:04:05 +00:00
<h1>{{ page.title }}</h1>
2017-07-09 12:18:22 +00:00
2018-01-01 19:04:05 +00:00
{{ page.content }}
2017-07-09 12:18:22 +00:00
</article>
</main>
2018-01-01 19:04:05 +00:00
{% include "_footer.liquid" %}
2017-07-09 12:18:22 +00:00
</body>
</html>