loopp-homepage/themes/openAV-Luppp/templates/index.html

33 lines
1.1 KiB
HTML

{% extends "base.html" %}
{% block content %}
<div class="page-wrapper">
<div class="content">
<div class="pure-g">
<div class="l-box-lrg pure-u-md-1-5"></div>
<div class="l-box-lrg pure-u-1 pure-u-md-3-5">
{% for article in articles_page.object_list %}
<article>
<header>
<h2>{{ article.title }}</h2>
</header>
<footer>
Published on
<time datetime="{{ article.date.isoformat() }}">{{ article.locale_date }}</time>
<address>By
{% for author in article.authors %}
<a class="url fn" href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a>
{% endfor %}
</address>
</footer>
<section>
{{ article.summary }}
</section>
</article>
{% endfor %}
</div>
</div>
</div>
</div>
{% endblock %}