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, 0 insertions, 22 deletions
diff --git a/mod/web/blog/templates/blog.html b/mod/web/blog/templates/blog.html
deleted file mode 100644
index 6c92a07..0000000
--- a/mod/web/blog/templates/blog.html
+++ /dev/null
@@ -1,22 +0,0 @@
-{% 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 %}