diff options
Diffstat (limited to 'design/templates')
-rw-r--r-- | design/templates/archives/src_home.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/design/templates/archives/src_home.html b/design/templates/archives/src_home.html index 9f373a3..0f676b5 100644 --- a/design/templates/archives/src_home.html +++ b/design/templates/archives/src_home.html @@ -12,10 +12,12 @@ <li><code>src</code></li>{%endif%} </ul> <main role="main" id="src-archive" class="src-archive"> - <h1 class="topic-hed"><code>src:</code> {% if topic %}Articles about {{topic.pluralized_name}}{%else%}Archive{%endif%}</h1>{% for object in object_list %}{% if object.slug != 'about' %} + <h1 class="topic-hed"><code>src:</code> {% if topic %}Articles about {{topic.pluralized_name}}{%else%}Archive{%endif%}</h1> + <h3 class="latest">Latest Posts</h3> + {% for object in object_list %}{% if object.slug != 'about' %} <article class="h-entry hentry {% cycle 'odd' 'even' %} {% cycle 'first' 'second' 'third' %}" itemscope itemType="http://schema.org/Article"> <h2><a href="{{object.get_absolute_url}}">{{object.title|safe|smartypants|widont}}</a></h2> - <p>{{object.meta_description|safe|smartypants|widont}} <a href="{{object.get_absolute_url}}">Read ⇢</a></p> + <p>{{object.meta_description|safe|smartypants|widont}} <a href="{{object.get_absolute_url}}">Read more.</a></p> </article>{%endif%} {%endfor%} </main> |