manbytesgnu_site

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

index.html (736B)


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