diff options
author | Silas Bartha <silas@exvacuum.dev> | 2024-08-13 16:57:45 -0400 |
---|---|---|
committer | Silas Bartha <silas@exvacuum.dev> | 2024-08-13 16:57:45 -0400 |
commit | baed7c3c8389fd1229cec2e9bb38ba7250da6582 (patch) | |
tree | b051d92ab222e8cd7a0d77d106168661dce9d0e5 /templates/blog-page.html |
Initial switch to zola site
Diffstat (limited to 'templates/blog-page.html')
-rw-r--r-- | templates/blog-page.html | 10 |
1 files changed, 10 insertions, 0 deletions
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 %} +<a href="{{ get_url(path='@/blog/_index.md') }}"> <- back to posts</a> +<h1 class="title"> + {{ page.title }} +</h1> +<p class="subtitle"><strong>{{ page.date }}</strong></p> +{{ page.content | safe }} +{% endblock content %} |