1
0
Fork 0
owenryan.us/_layouts/main.html
2023-05-15 23:59:18 -04:00

12 lines
195 B
HTML

---
# 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 %}