This commit is contained in:
Robert Clarke 2019-05-03 23:36:05 +00:00
commit 536c3856e1
89 changed files with 8421 additions and 0 deletions

View file

@ -0,0 +1,6 @@
{% extends "taxonomy_list.html" %}
{% block content %}
{% set title = "All Authors"%}
{{ super() }}
{% endblock content %}

View file

@ -0,0 +1,6 @@
{% extends "taxonomy_single.html" %}
{% block content %}
{% set title = "Author: " ~ term.name %}
{{ super() }}
{% endblock content %}