2013-05-27 22:15:01 -04:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
2013-07-29 16:09:35 -04:00
|
|
|
<h2>Recent Articles by Category</h2>
|
2013-07-14 00:58:23 -04:00
|
|
|
{% for cat, articles in categories %}
|
2013-07-29 16:09:35 -04:00
|
|
|
<h3><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a></h3>
|
2013-07-30 14:58:58 -04:00
|
|
|
<ul class="item-list" itemscope itemtype="http://schema.org/ItemList">
|
|
|
|
<meta itemprop="name" content="{{ cat }} recent articles"/>
|
2013-07-29 16:09:35 -04:00
|
|
|
{% for article in articles[0:3] %}
|
|
|
|
{% include '_list_item.html' %}
|
2013-07-14 00:58:23 -04:00
|
|
|
{% endfor %}
|
2013-07-29 16:09:35 -04:00
|
|
|
<p><a href="{{ SITEURL }}/{{ cat.url }}">View all articles in {{ cat }}...</a></p>
|
2013-07-14 00:58:23 -04:00
|
|
|
</ul>
|
2013-07-29 16:09:35 -04:00
|
|
|
{% endfor %}
|
2013-07-14 00:58:23 -04:00
|
|
|
{% endblock %}
|
2013-07-29 16:09:35 -04:00
|
|
|
|