From baed7c3c8389fd1229cec2e9bb38ba7250da6582 Mon Sep 17 00:00:00 2001 From: Silas Bartha Date: Tue, 13 Aug 2024 16:57:45 -0400 Subject: Initial switch to zola site --- templates/base.html | 15 +++++++++++++++ templates/blog-page.html | 10 ++++++++++ templates/blog.html | 14 ++++++++++++++ templates/index.html | 5 +++++ templates/projects.html | 0 5 files changed, 44 insertions(+) create mode 100644 templates/base.html create mode 100644 templates/blog-page.html create mode 100644 templates/blog.html create mode 100644 templates/index.html create mode 100644 templates/projects.html (limited to 'templates') diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..c74aceb --- /dev/null +++ b/templates/base.html @@ -0,0 +1,15 @@ + + + + + silas + + + +
+
+ {% block content %} {% endblock %} +
+
+ + diff --git a/templates/blog-page.html b/templates/blog-page.html new file mode 100644 index 0000000..61f99d8 --- /dev/null +++ b/templates/blog-page.html @@ -0,0 +1,10 @@ +{% extends "base.html" %} + +{% block content %} + <- back to posts +

+ {{ page.title }} +

+

{{ page.date }}

+{{ page.content | safe }} +{% endblock content %} diff --git a/templates/blog.html b/templates/blog.html new file mode 100644 index 0000000..56365fc --- /dev/null +++ b/templates/blog.html @@ -0,0 +1,14 @@ +{% extends "base.html" %} + +{% block content %} + <- back to landing +

+ {{ section.title }} +

+ + +{% endblock content %} diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..575141f --- /dev/null +++ b/templates/index.html @@ -0,0 +1,5 @@ +{% extends "base.html" %} + +{% block content %} +{{ section.content | safe }} +{% endblock content %} diff --git a/templates/projects.html b/templates/projects.html new file mode 100644 index 0000000..e69de29 -- cgit v1.2.3