blog/themes/xsteadfastx-greg/templates/index.html
Marvin Steadfast 846634d046 new theme
2014-04-03 10:53:29 +02:00

14 lines
473 B
HTML

{% extends 'base.html' %}
{% block title %}Home | {{ SITENAME }}{% endblock %}
{% block metadesc %}{{ DESCRIPTION }}{% endblock %}
{% block content %}
{% for article in articles %}
{% if article.status != 'draft' %}
<h3 class="article-title"><a href="{{ article.url }}" title="{{ article.title }}">{{ article.title }}</a></h3>
<h6 class="article-date">{{ article.locale_date }}</h6>
<hr class="large">
{% endif %}
{% endfor %}
{% endblock %}