nourhans-blog/themes/blue/html/author.html
2026-08-26 17:50:14 +01:00

19 lines
467 B
HTML

{% extends "/html/base.html" %}
{%block subtitle %}: Posts by {{author}} {% endblock %}
{% block content %}
<div id="posts">
<div id="page-header" class="post-header">
<h2>Posts by {{author}}</h2>
</div>
{% for group in groups %}
<h4>{{group.group}}</h4>
<ul>
{% for post in group.posts %}
<li>
{{post.date|date:"MMM dd"}} - <a href="{{post.uri}}">{{post.title}}</a>
</li>
{% endfor %}
</ul>
{% endfor %}
</div>
{% endblock %}