summaryrefslogtreecommitdiff
path: root/mod/web/blog/templates/blog.html
diff options
context:
space:
mode:
Diffstat (limited to 'mod/web/blog/templates/blog.html')
-rw-r--r--mod/web/blog/templates/blog.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/mod/web/blog/templates/blog.html b/mod/web/blog/templates/blog.html
new file mode 100644
index 0000000..6c92a07
--- /dev/null
+++ b/mod/web/blog/templates/blog.html
@@ -0,0 +1,22 @@
+{% extends "base.html" %}
+
+{% block content %}
+
+<head>
+ <title>4kb.net</title>
+</head>
+
+<h2>{{ section.title }}</h2>
+
+{{ section.content | safe }}
+
+<ul>
+ {% for page in section.pages %}
+ <li>
+ <span>[{{ page.date }}]</span>
+ <a href="{{ page.permalink | safe }}">{{ page.title }}</a>
+ </li>
+ {% endfor %}
+</ul>
+
+{% endblock content %}