summaryrefslogtreecommitdiff
path: root/templates/post.html
diff options
context:
space:
mode:
authorsoaos <soaos@soaos.dev>2025-11-21 21:14:12 -0500
committersoaos <soaos@soaos.dev>2025-11-21 21:14:12 -0500
commitba76e77d935998e4b128053dcc61d2ed4884cdda (patch)
tree5464dccd475404b509f048f4525193a8ff36a715 /templates/post.html
parent6e3a7252608197b6571a56c9b07be09f254e8bae (diff)
zola migration
Diffstat (limited to 'templates/post.html')
-rw-r--r--templates/post.html19
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/post.html b/templates/post.html
new file mode 100644
index 0000000..794c715
--- /dev/null
+++ b/templates/post.html
@@ -0,0 +1,19 @@
+{% extends "base.html" %} {% block content %}
+
+<div class="window">
+ <div class="title-bar">
+ <b>📰 Post: {{ page.title }}</b>
+ <div class="title-bar-controls">
+ <button
+ aria-label="Help"
+ data-tooltip="Posted {{ page.date }}&#xa;{{ page.word_count }} words ({{ page.reading_time }} minutes)"
+ ></button>
+ <a href="../"><button aria-label="Close"></button></a>
+ </div>
+ </div>
+ <div class="window-body">
+ <h1>{{ page.title }}</h1>
+ <article>{{ page.content | safe}}</article>
+ </div>
+</div>
+{% endblock content %}