summaryrefslogtreecommitdiff
path: root/design/templates/blog/entry_detail.html
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2019-05-03 13:46:03 -0500
committerluxagraf <sng@luxagraf.net>2019-05-03 13:46:03 -0500
commitf43ca9d7aee9b880ab8fac8e1eb6c00192505048 (patch)
treeb5c61046e0f4b958049e6bfb93aa3eae0fe83167 /design/templates/blog/entry_detail.html
parent99e60b7587a33cc9dea44d7408aff7dd6cc4009d (diff)
added some microformats to links
Diffstat (limited to 'design/templates/blog/entry_detail.html')
-rw-r--r--design/templates/blog/entry_detail.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/design/templates/blog/entry_detail.html b/design/templates/blog/entry_detail.html
index ad4eda8..fcbe936 100644
--- a/design/templates/blog/entry_detail.html
+++ b/design/templates/blog/entry_detail.html
@@ -9,7 +9,7 @@
<h1 class="p-name hed-primary" itemprop="headline">{{object.title|smartypants|safe}}</h1>
{% if object.sub_title %}<h2 class="p-summary hed-secondary">{{object.sub_title|smartypants|safe}}</h2>{%endif%}
<div class="post-linewrapper">
- <h5 class="hed-tertiary">Filed Under: {% for tag in object.tags.all %}<a href="/essays/tags/{{tag.slug}}" title="View all essays about {{tag}}">{{tag}}</a>{%if forloop.last%}{%else%}, {%endif%}{% endfor %}</h5>
+ <h5 class="hed-tertiary">Filed Under: {% for tag in object.tags.all %}<a rel="tag" class="p-category" href="/essays/tags/{{tag.slug}}" title="View all essays about {{tag}}">{{tag}}</a>{%if forloop.last%}{%else%}, {%endif%}{% endfor %}</h5>
<time class="dt-published published dt-updated hed-tertiary" datetime="{{object.pub_date|date:'c'}}" itemprop="datePublished">{{object.pub_date|date:"F"}} <span>{{object.pub_date|date:"j, Y"}}</span></time>
<span class="hide" itemprop="author" itemscope itemtype="http://schema.org/Person">by <a class="p-author h-card" href="/about"><span itemprop="name">Scott Gilbertson</span></a></span>
</div>