27 lines
1.1 KiB
HTML
27 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
{# questa macro e' utile per mostrare articoli dentro ad una lista; non e' la migliore per mostrare un
|
|
articolo come contenuto principale della pagina #}
|
|
{% macro article_in_list(article) %}
|
|
<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>
|
|
{% endmacro %}
|
|
{% block content %}
|
|
{% if articles %}
|
|
{% for article in (articles_page.object_list if articles_page else articles) %}
|
|
{{ article_in_list(article) }}
|
|
<hr/>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% include 'includes/pagination.html' %}
|
|
{% endblock content %}
|