You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
565 B
27 lines
565 B
{% extends "base_default.html" %} |
|
|
|
{% block title %} |
|
{{ section.title }} |
|
{% endblock title %} |
|
|
|
{% block header %} |
|
<h1>{{ section.title }}</h1> |
|
{% endblock header %} |
|
|
|
{% block content %} |
|
{{ section.content | safe }} |
|
|
|
<h2>Posts</h2> |
|
|
|
{% for post in section.pages %} |
|
<p class="list-entry"> |
|
<a href="{{ post.permalink }}">{{ post.title | safe }}</a> |
|
<br> |
|
{{ post.date | truncate(length=10, end="") }} |
|
</p> |
|
{% endfor %} |
|
|
|
<p> |
|
RSS feed: <a href="atom.xml">atom.xml</a> |
|
</p> |
|
{% endblock content %} |