19 lines
488 B
HTML
19 lines
488 B
HTML
{% 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 %}
|