1
0
mirror of https://github.com/arsenetar/pelican-red.git synced 2024-11-22 11:19:02 +00:00
pelican-red/templates/category.html
Andrew Senetar a584c9b380 Update all main template files
This is a major update to template files as now most have actual content.
2013-07-14 00:58:23 -04:00

13 lines
433 B
HTML

{% extends 'base.html' %}
{% block title %}{{ super() }} - {{ category.name|title }}{% endblock %}
{% block content_title %}{{ category.name|title }}{% endblock %}
{% block content %}
{% for article in articles %}
<article>
<header><h1><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title|title }}</a></h1></header>
{{ article.summary }}
<footer>{{ article.author }}</footer>
</article>
{% endfor %}
{% endblock %}