blog-theme/alchemy/templates/index.html

41 lines
1.1 KiB
HTML
Raw Normal View History

2013-11-24 18:53:19 +01:00
{% extends "base.html" %}
2014-06-21 13:07:58 +02:00
{% block head %}
{{ super() }}
<meta name="description" content="{{ SITE_DESCRIPTION|striptags }}">
{% endblock %}
{% block title %}
{{ SITENAME }} &mdash; {{ SITE_TAGLINE }}
{% endblock %}
{% block page_header %}
All Articles
2014-06-21 13:07:58 +02:00
{% endblock %}
2013-11-24 18:53:19 +01:00
{% block content %}
{% for article in articles_page.object_list %}
2016-11-07 08:18:02 +01:00
<article class="row teaser">
<header class="col-sm-4 hidden-xs">
<div class="text-muted" title="{{ article.date.isoformat() }}">{{ article.locale_date }}</div>
<div><a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a></div>
{% if article.authors and SHOW_ARTICLE_AUTHORS %}
<div>By
{% for author in article.authors %}
<a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a>{% if not loop.last %}, {% endif %}
{% endfor %}
</div>
2016-11-07 08:18:02 +01:00
{% endif %}
</header>
<div class="col-sm-8">
<h3><a href="/{{ article.url }}" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></h3>
{{ article.summary }}
</div>
2016-11-07 08:18:02 +01:00
</article>
{% if not loop.last %}
<hr>
{% endif %}
{% endfor %}
{% include 'include/pagination.html' %}
{% endblock %}