aboutsummaryrefslogtreecommitdiffstats
path: root/syte/templates/index.html
blob: 95f55b027541e5fef0c4192ce86709dfa59c39ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends 'base.html' %}
{% block main_section %}
<section class="main-section blog-section" id="blog-posts">
  {% for article in articles_page.object_list %}
  <h3 class="date">{{article.locale_date}}</h3>
    <article>
	<hgroup>
	<h2><a href="{{article.url}}" title="Permalink to {{article.title|striptags}}">{{article.title}}</a></h2>
	
	</hgroup>
	{{article.summary}}
	</article>
{% endfor %}

{% include "pagination.html" %}

</section>
{% endblock %}