Rename tags to 'cats', a silly catgirl pun on 'categories'

This commit is contained in:
Danielle McLean 2017-11-20 11:09:30 +11:00
parent 2413a8aa96
commit 3ca2af74bb
Signed by untrusted user: 00dani
GPG key ID: 5A5D2D1AFF12EEC5
5 changed files with 42 additions and 18 deletions

View file

@ -41,12 +41,12 @@
{% endif %}
</div>
{% if entry.tags.exists %}
{% if entry.cats.exists %}
<div class="card-footer">
{% for t in entry.tags.all %}
<a class="p-category" href="{{ t.url }}">
{% for c in entry.cats.all %}
<a class="p-category" href="{{ c.url }}">
<i class="fa fa-hashtag"></i>
{{ t.name }}
{{ c.name }}
</a>
{% endfor %}
</div>