Create a bunch of templates

This commit is contained in:
2023-12-28 21:14:10 -06:00
parent 0ed2e1ee7b
commit 4edd2fb59d
9 changed files with 397 additions and 7 deletions

13
templates/base.html Normal file
View File

@@ -0,0 +1,13 @@
{% include 'header.html' %}
{% include 'body_top.html' %}
{% include 'navbar.html' %}
<main>
{% include 'call_to_action.html' %}
{% include 'gallery.html' %}
</main>
{% include 'footer.html' %}
{% include 'body_bottom.html' %}