diff options
| author | 2022-02-19 20:55:07 +0100 | |
|---|---|---|
| committer | 2022-02-19 20:55:07 +0100 | |
| commit | 8b3f0aa590b51cfd7696ed212adf94fa43a0e858 (patch) | |
| tree | daefae18ee470d4f2f1622779d3cbf52d2bdeb61 /templates/blog-page.html | |
initial
Diffstat (limited to 'templates/blog-page.html')
| -rw-r--r-- | templates/blog-page.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/templates/blog-page.html b/templates/blog-page.html new file mode 100644 index 0000000..b8263e0 --- /dev/null +++ b/templates/blog-page.html @@ -0,0 +1,14 @@ +{% extends "base.html" %} + +{% block title %}{{ page.title }}{% endblock title %} + +{% block content %} +<h1 class="title"> + {{ page.title }} +</h1> +<p class="subtitle">{{ page.date | date(format="%-d %b %Y") }}</p> + +<hr> +{{ page.content | safe }} +<hr> <a href="../">Go back</a> +{% endblock content %} |