diff options
Diffstat (limited to 'design/templates/blog/entry_detail.html')
-rw-r--r-- | design/templates/blog/entry_detail.html | 2 |
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> |