aboutsummaryrefslogtreecommitdiffstats
path: root/templates/blog.html
diff options
context:
space:
mode:
authorLibravatar cel 🌸 <cel@blos.sm>2024-01-30 16:16:05 +0000
committerLibravatar cel 🌸 <cel@blos.sm>2024-01-30 16:16:05 +0000
commitf00159f53b3774601500ec65345791311ff6efa1 (patch)
treecc65a487e71a056126e1935108a494c7851863f9 /templates/blog.html
parent8c03d9a53f4bc2f70fb5c1e0487bc74fe0137fcb (diff)
downloadblossom-f00159f53b3774601500ec65345791311ff6efa1.tar.gz
blossom-f00159f53b3774601500ec65345791311ff6efa1.tar.bz2
blossom-f00159f53b3774601500ec65345791311ff6efa1.zip
migrate to poem and askama
Diffstat (limited to '')
-rw-r--r--templates/blog.html23
-rw-r--r--templates/blog.html.tera22
2 files changed, 23 insertions, 22 deletions
diff --git a/templates/blog.html b/templates/blog.html
new file mode 100644
index 0000000..42cf95f
--- /dev/null
+++ b/templates/blog.html
@@ -0,0 +1,23 @@
+{% extends "base.html" %}
+
+{% block reverse %}reverse{% endblock %}
+{% block nav_blog %}active{% endblock %}
+
+{% block content %}
+
+{% for blogpost in blogposts %}
+{% include "blogpost-panel.html" %}
+{% endfor %}
+
+{% endblock content %}
+
+{% block aside %}
+
+<aside>
+
+ {% include "latestposts.html" %}
+ {% include "filtertags.html" %}
+
+</aside>
+
+{% endblock aside %} \ No newline at end of file
diff --git a/templates/blog.html.tera b/templates/blog.html.tera
deleted file mode 100644
index 20ec08e..0000000
--- a/templates/blog.html.tera
+++ /dev/null
@@ -1,22 +0,0 @@
-{% extends "base" %}
-
-{% block nav_blog %}active{% endblock %}
-
-{% block content %}
-
-{% for blogpost in blogposts %}
-{% include "blogpost-panel" %}
-{% endfor %}
-
-{% endblock content %}
-
-{% block aside %}
-
-<aside>
-
- {% include "latestposts" %}
- {% include "filtertags" %}
-
-</aside>
-
-{% endblock aside %}