diff options
author | luxagraf <sng@luxagraf.net> | 2015-11-16 14:14:41 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2015-11-16 14:14:41 -0500 |
commit | f2a52043d186b4302240f618fa969cea88a4f4b9 (patch) | |
tree | e38168b26ca1a0faebd2a6999a30f1ff95477738 /design/templates/archives/src_home.html | |
parent | b5525ab81fd7589e77eb83264d2d8db5c1ddd00a (diff) |
tweaked the looks of src archives a bit.
Diffstat (limited to 'design/templates/archives/src_home.html')
-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> |