blog.notmyidea.org/theme/templates/index.html
2012-10-05 02:33:21 +02:00

25 lines
876 B
HTML

{% extends "base.html" %}
{% block content_title %}{% endblock %}
{% block content %}
{% if articles %}
<section id="content" class="body">
<ol id="posts-list" class="hfeed">
{% for article in articles_page.object_list %}
<li><article class="hentry {{ article.category }}">
<span class='category'>{{ article.category }}</span>
<h1>
<a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title}}"> {{ article.title }} </a>
</h1>
</article></li>
{% endfor %}
</ol><!-- /#posts-list -->
</section><!-- /#content -->
{% else %}
<section id="content" class="body">
<h2>Pages</h2>
{% for page in PAGES %}
<li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li>
{% endfor %}
</section>
{% endif %}
{% endblock content %}