diff options
Diffstat (limited to 'templates/section.html')
| -rw-r--r-- | templates/section.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/templates/section.html b/templates/section.html new file mode 100644 index 0000000..cae39d3 --- /dev/null +++ b/templates/section.html @@ -0,0 +1,9 @@ +{% extends "base.html" %} +{% block content %} + {{ section.content | safe }} + <ul> + {% for post in section.pages %} + <li><a href="{{ post.permalink }}">{{ post.title }} -- {{ post.date }}</a></li> + {% endfor %} + </ul> +{% endblock %} |
