sitolost/pelican-themes/pelican-bootstrap3bis/templates/news_listGOOD.html

39 lines
1.7 KiB
HTML

{% extends "baselite.html" %}
{% block content %}
{% if articles %}
{% for article in articles_page.object_list if article.category.name == 'news' %}
<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 %}
{% if articles %}
{% for article in articles_page.object_list if FAVORITES_TAG in article.tags %}
<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 %}