aboutsummaryrefslogtreecommitdiffstats
path: root/syte/templates/tag.html
blob: 865f3dd05ab800f6143ac9ab0082ca9e21f67d97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends 'base.html' %}
{% block title %}Posts tagged '{{tag}}' | {{ SITENAME }} {% endblock %}
{% block main_section %}
<section class="main-section blog-section" id="blog-posts">
  {% for article in articles[:5] %}
    <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 %}
</section>


{% endblock %}