18 lines
466 B
HTML
18 lines
466 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h2 class="blocktitle">
|
|
author: {{ term.name }}
|
|
({{ term.pages | length }} post{{ term.pages | length | pluralize }})
|
|
</h2>
|
|
|
|
<div class="page-intro">
|
|
<p class="larger">view all <a href="/authors">authors</a>.</p>
|
|
</div>
|
|
|
|
<ul class="postlist">
|
|
{% for page in term.pages | sort(attribute="date") | reverse %}
|
|
{% include "blog-entry.html" %}
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock content %}
|