diff options
Diffstat (limited to 'templates/blog.html')
-rw-r--r-- | templates/blog.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/blog.html b/templates/blog.html new file mode 100644 index 0000000..147ac2b --- /dev/null +++ b/templates/blog.html @@ -0,0 +1,13 @@ +{% extends "base.html" %} + +{% block content %} + <h2>{{ section.title }}</h2> + <div class="content"> + <p><a href="atom.xml">Feed</a></p> + {% for page in section.pages %} + <p> + {{ page.date }} <a href="{{ page.path }}" class>{{ page.title }}</a> + </p> + {% endfor %} + </div> +{% endblock content %} |