diff options
Diffstat (limited to 'design/templates/homepage.html')
-rw-r--r-- | design/templates/homepage.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/design/templates/homepage.html b/design/templates/homepage.html index ca8d3b5..72cbbd1 100644 --- a/design/templates/homepage.html +++ b/design/templates/homepage.html @@ -13,10 +13,9 @@ {% for obj in object_list %} <article class="h-entry hentry" itemscope itemType="http://schema.org/Article"> <span class="date dt-published hed-tertiary">{{obj.pub_date|date:"F d, Y"}}</span> - <h3 class="p-name hed-primary"><a class="u-repost-of" href="{{obj.link_url}}" title="Read the original story">{{obj.title|safe|smartypants|widont}}</a> <a class="hed-star u-url" href="{{obj.get_absolute_url}}">★</a></h3> + <h3 class="p-name hed-primary"><a class="u-repost-of" href="{{obj.link_url}}" title="Read the original story">{{obj.title|safe|smartypants|widont}}</a> <a class="star u-url" href="{{obj.get_absolute_url}}">★</a></h3> <div class="p-summary">{{obj.body_html|safe|smartypants}}</div> </article> -{% if forloop.last %}{%else%}<hr />{%endif%} {% endfor %} </div> {% endblock %} |