aboutsummaryrefslogtreecommitdiff
path: root/src/blog.node5.net/templates/article.html
diff options
context:
space:
mode:
authoruser@node5.net <user@node5.net>2026-06-15 21:24:56 +0200
committeruser@node5.net <user@node5.net>2026-06-15 21:24:56 +0200
commit38b8178cce160b3d2e6c8b3256c7655f4d0a27cd (patch)
treeee232c74e786890a4d2bad8b1d89e2b5a5e2c6e6 /src/blog.node5.net/templates/article.html
parent693525e6444a74980ddfffb32ffe561c53dfcc24 (diff)
internalize needed files for starting the program
Diffstat (limited to 'src/blog.node5.net/templates/article.html')
-rw-r--r--src/blog.node5.net/templates/article.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/blog.node5.net/templates/article.html b/src/blog.node5.net/templates/article.html
new file mode 100644
index 0000000..da3b668
--- /dev/null
+++ b/src/blog.node5.net/templates/article.html
@@ -0,0 +1,10 @@
+{% extends "base.html" %}
+{% block title_prefix %}{{article.name}} - {% endblock %}
+{% block head %}
+ {{ super() }}
+ <link rel="stylesheet" type="text/css" href="/article.css">
+{% endblock %}
+{% block content %}
+ <h1 class="inline">{{ article.name }}</h1> {% include 'article_meta_data.html' %}
+{{ article.html|safe }}
+{% endblock %}