manbytesgnu_site

Source files for manbytesgnu.org
git clone git://holbrook.no/manbytesgnu_site.git
Info | Log | Files | Refs

index.html (883B)


      1 {% extends "base.html" %}
      2 {% block content %}
      3 <section id="content">
      4 {% block content_title %}
      5 <h1 class="top-body-title">Chronicle</h1>
      6 {% endblock %}
      7 
      8 <ol id="post-list">
      9 {% for article in articles_page.object_list %}
     10 	{% set legacy = '' %}
     11 	{% if article.date < CUTOFF %}
     12 		{% set legacy = ' legacy' %}
     13 	{% endif %}
     14 	<article class="hentry{{ legacy }}">
     15 	<li>
     16 			<header> <h3 class="entry-title{{ legacy }}"><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{% if article.series %} {{ article.series }}: {% endif %}{{ article.title }}</a></h3> </header>
     17 		<p class="entry-summary{{legacy}}">{{ article.summary }}</p>
     18         </article></li>
     19 {% endfor %}
     20 </ol><!-- /#posts-list -->
     21 {% if articles_page.has_other_pages() %}
     22     {% include 'pagination.html' %}
     23 {% endif %}
     24 </section><!-- /#content -->
     25 {% endblock content %}