From f00159f53b3774601500ec65345791311ff6efa1 Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Tue, 30 Jan 2024 16:16:05 +0000 Subject: migrate to poem and askama --- templates/blogpost-panel.html | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 templates/blogpost-panel.html (limited to 'templates/blogpost-panel.html') diff --git a/templates/blogpost-panel.html b/templates/blogpost-panel.html new file mode 100644 index 0000000..6375012 --- /dev/null +++ b/templates/blogpost-panel.html @@ -0,0 +1,10 @@ +
+

{{ blogpost.subject().unwrap_or("untitled") }}

+

{{ blogpost.published_at() }} permalink

+
{% for tag in blogpost.tags().clone() %}{{ tag }}{% + endfor %}
+
+ {{ blogpost.content()|safe }} +
+
\ No newline at end of file -- cgit