shitcan bootstrap and use flexbox and breakpoints instead

This commit is contained in:
Jonathan Souter
2023-02-24 16:47:41 +10:30
parent 512ff30201
commit 7c955e9809
9 changed files with 421 additions and 161 deletions

View File

@ -16,13 +16,19 @@
{% endif %}
</head>
<body>
<header>{% include 'partials/header.njk' %}</header>
<nav>{% include 'partials/navigation.njk' %}</nav>
<main>
<h1>{{ title }}</h1>
{{ content | safe }}
<header>{% include 'partials/header.njk' %}
<nav>{% include 'partials/navigation.njk' %}</nav>
</header>
<article>
<h1>{{ title }}</h1>
{{ content | safe }}
</article>
<footer>{% include 'partials/footer.njk' %}</footer>
</main>
<footer>{% include 'partials/footer.njk' %}</footer>
<div class="aside">{% include 'partials/sidebar.njk' %}</div>
</div>
</div>
</body>
</html>