1
0
Fork 0
owenryan.us/source/_layouts/main.html

13 lines
195 B
HTML
Raw Permalink Normal View History

2023-05-16 03:59:18 +00:00
---
# Base layout with header, footer, and content is in a main tag
layout: base
---
{% include header.html %}
<main class="flex-shrink-0">
{{ content }}
</main>
{% include footer.html %}