sito-hackit-16/themes/pelican-bootstrap3/templates/article_list.html
Giuliano Peraz 18fa7e0c1f Adds pelican-bootstrap3 and custom css as default theme for pelican
It adds also main.css from Dieco
2016-05-20 23:38:21 +02:00

22 lines
892 B
HTML

{% extends "base.html" %}
{% block content %}
{% if articles %}
{% for article in (articles_page.object_list if articles_page else articles) %}
<article>
<h2><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h2>
{% if DISPLAY_ARTICLE_INFO_ON_INDEX %}
<div class="well well-sm">
{% include "includes/article_info.html" %}
</div>
{% endif %}
<div class="summary">{{ article.summary }}
{% include 'includes/comment_count.html' %}
<a class="btn btn-default btn-xs" href="{{ SITEURL }}/{{ article.url }}">more ...</a>
</div>
</article>
<hr/>
{% endfor %}
{% endif %}
{% include 'includes/pagination.html' %}
{% endblock content %}