diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2020-07-07 15:51:57 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2020-07-07 16:43:48 +0200 |
commit | 9beb127bb511b94998c5d236553e58a9fb1c4636 (patch) | |
tree | 125d61fa2a8167d4847acc69cc64e5afafc9c6db /templates/authors/list.html | |
parent | 83f2240144f03a0e46f593a6e240ed0ccb2a9173 (diff) | |
download | rabalderz-9beb127bb511b94998c5d236553e58a9fb1c4636.tar.gz rabalderz-9beb127bb511b94998c5d236553e58a9fb1c4636.tar.bz2 rabalderz-9beb127bb511b94998c5d236553e58a9fb1c4636.zip |
Add authors as taxonomies.
Makes more sence, and allows users to subscribe to author feeds.
Diffstat (limited to 'templates/authors/list.html')
-rw-r--r-- | templates/authors/list.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/templates/authors/list.html b/templates/authors/list.html new file mode 100644 index 0000000..0a18a85 --- /dev/null +++ b/templates/authors/list.html @@ -0,0 +1,5 @@ +<ul class="authorlist"> + {% for t in terms %} + <li class="author">{{ t.name }}</li> + {% endfor %} +</ul> |