26 lines
892 B
HTML
26 lines
892 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<header class="page-header">
|
|
<h1>
|
|
Podcast
|
|
</h1>
|
|
</header>
|
|
|
|
{% if articles %}
|
|
{% for article in (articles_page.object_list if articles_page else articles) %}
|
|
<article>
|
|
<xh2><a href="{{ SITEURL }}/{{ article.url }}"><i class="fa fa-calendar"></i><time datetime="{{ article.date.isoformat() }}"> {{ article.locale_date }}</time> - {{ article.title }}</a></xh2>
|
|
{% if DISPLAY_ARTICLE_INFO_ON_INDEX %}
|
|
<div class="well well-sm">
|
|
{% include "includes/article_info.html" %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
</article>
|
|
<hr/>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% include 'includes/pagination.html' %}
|
|
{% endblock content %}
|