From 5d4e632cf083e27a8b0aa4dca4571aa47eaaca81 Mon Sep 17 00:00:00 2001 From: Jonathan Peacher Date: Mon, 19 Jun 2023 13:53:12 -0500 Subject: [PATCH] feat: added index header --- templates/index.html | 32 ++++++++++++++++++++++++++++++++ templates/projects.html | 17 +++++++++++++++-- 2 files changed, 47 insertions(+), 2 deletions(-) diff --git a/templates/index.html b/templates/index.html index ef359cf..0c710fe 100644 --- a/templates/index.html +++ b/templates/index.html @@ -7,12 +7,44 @@ + + {% block header %}{% endblock %}
{% block main %}{% endblock %}
+ {% block footer %}{% endblock %} \ No newline at end of file diff --git a/templates/projects.html b/templates/projects.html index 0739ab0..78712eb 100644 --- a/templates/projects.html +++ b/templates/projects.html @@ -1,6 +1,19 @@ {% extends 'index.html' %} +{% block header %} +
+ +

Jonathan Peacher

+

+ Software Engineer • Coffee Enthusiast • Dungeon Master • Cat Dad
+ + TwitterMastadonGitHubRSS + +

+
+{% endblock %} + {% block main %} -

Projects

-

TK TK TK

+

Projects

+

TK TK TK

{% endblock %} \ No newline at end of file