huge restructure to give flexibility with blog posts and mobile layouts

This commit is contained in:
Jonathan Souter
2023-02-28 21:25:22 +10:30
parent 4bcb5e0dc1
commit 2964a27d53
14 changed files with 135 additions and 53 deletions

View File

@ -19,14 +19,18 @@
</head>
<body>
<main>
<header>{% include 'partials/header.njk' %}</header>
<hr/>
<article>
<h1>{{ title }}</h1>
{{ content | safe }}
</article>
<hr/>
<footer>{% include 'partials/footer.njk' %}</footer>
<div>
<header>{% include 'partials/header.njk' %}</header>
<hr/>
<article>
<h1>{{ title }}</h1>
{{ content | safe }}
</article>
</div>
<footer>
<hr/>
{% include 'partials/footer.njk' %}
</footer>
</main>
<aside>{% include 'partials/sidebar.njk' %}</aside>
</div>