nuir/templates/macros.html
rick 5b26f1f9ec
major update of the theme
remove summary and box
2024-12-24 15:59:38 +01:00

33 lines
1.1 KiB
HTML

{% macro listArticles(objIt) -%}
{% for art in objIt %}
<div class="pre-art">
<p class="infos-art">Par
{% for author in art.authors %}
<a href="{{ SITEURL }}/{{ author.url }}" class="author">{{ author }}</a>
{% endfor %}
dans <a href="{{ SITEURL }}/{{ art.category.url }}" class="category">{{ art.category }}</a> le {{ art.date.strftime('%d/%m/%Y') }}.
</p>
<h2><a href="{{ SITEURL }}/{{ art.url }}">{{ art.title }}</a></h2>
<div class="tags">
{% for tag in art.tags %}
<a href="{{ SITEURL }}/tag/{{ tag }}">{{ tag }}</a>
{% endfor %}
</div>
{% endif %}
</div>
{% endfor %}
{%- endmacro %}
{% macro paginationArt(prev, next) -%}
<div id="base-pagenation">
{% if prev is not none %}
<p id="base-prev"><a href="{{ SITEURL }}/{{ prev.url }}">Articles récents</a></p>
{% endif %}
{% if next is not none %}
<p id="base-next"><a href="{{ SITEURL }}/{{ next.url }}">Ancients articles</a></p>
{% endif %}
</div>
{%- endmacro %}