author.html 467 B

12345678910111213141516171819
  1. {% extends "/html/base.html" %}
  2. {%block subtitle %}: Posts by {{author}} {% endblock %}
  3. {% block content %}
  4. <div id="posts">
  5. <div id="page-header" class="post-header">
  6. <h2>Posts by {{author}}</h2>
  7. </div>
  8. {% for group in groups %}
  9. <h4>{{group.group}}</h4>
  10. <ul>
  11. {% for post in group.posts %}
  12. <li>
  13. {{post.date|date:"MMM dd"}} - <a href="{{post.uri}}">{{post.title}}</a>
  14. </li>
  15. {% endfor %}
  16. </ul>
  17. {% endfor %}
  18. </div>
  19. {% endblock %}