From 1c831883e0ad3d6edb753248aa3e8be52e8f2e0a Mon Sep 17 00:00:00 2001 From: JackJ30 Date: Sun, 11 May 2025 23:53:55 -0400 Subject: zola site --- zola-static/templates/base.html | 17 +++++++++++++++++ zola-static/templates/blog-page.html | 9 +++++++++ zola-static/templates/blog.html | 15 +++++++++++++++ zola-static/templates/index.html | 8 ++++++++ 4 files changed, 49 insertions(+) create mode 100644 zola-static/templates/base.html create mode 100644 zola-static/templates/blog-page.html create mode 100644 zola-static/templates/blog.html create mode 100644 zola-static/templates/index.html (limited to 'zola-static/templates') diff --git a/zola-static/templates/base.html b/zola-static/templates/base.html new file mode 100644 index 0000000..8f16f97 --- /dev/null +++ b/zola-static/templates/base.html @@ -0,0 +1,17 @@ + + + + + + Jack Jamison + + + +
+
+ {% block content %} {% endblock content %} +
+
+ + + diff --git a/zola-static/templates/blog-page.html b/zola-static/templates/blog-page.html new file mode 100644 index 0000000..f0f638e --- /dev/null +++ b/zola-static/templates/blog-page.html @@ -0,0 +1,9 @@ +{% extends "base.html" %} + +{% block content %} +

+ {{ page.title }} +

+

{{ page.date }}

+{{ page.content | safe }} +{% endblock content %} diff --git a/zola-static/templates/blog.html b/zola-static/templates/blog.html new file mode 100644 index 0000000..eb66dad --- /dev/null +++ b/zola-static/templates/blog.html @@ -0,0 +1,15 @@ +{% extends "base.html" %} + +{% block content %} + +

+ {{ section.title }} +

+ +{% endblock content %} diff --git a/zola-static/templates/index.html b/zola-static/templates/index.html new file mode 100644 index 0000000..297850d --- /dev/null +++ b/zola-static/templates/index.html @@ -0,0 +1,8 @@ +{% extends "base.html" %} + +{% block content %} +

+ Jack Jamison's Homepage +

+

My blog

+{% endblock content %} -- cgit v1.2.3