Files
figureslibres.cc/user/themes/figureslibres/templates/partials/blog-list-item.html.twig
T
2019-09-25 15:05:50 +02:00

26 lines
821 B
Twig
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% macro pageLinkName(text) %}{{ text|lower|replace({' ':'-', 'é':'e', ',':'',':':'','.':'','(':'',')':'','?':'', "": '','ê':'e' }) }}{% endmacro %}
{% import _self as macro %}
<div class="card">
{% set image = page.media.images|first %}
{% if image %}
<div id="{{ page.folder }}" class="card-image">
<a href="{{ page.url }}">{{ image.html("", "Projet") }}</a>
</div>
{% endif %}
<div class="card-header">
{% if page.header.title %}
{% include 'partials/blog/title.html.twig' with {title_level: 'h2'} %}
{% endif %}
{% if page.header.taxonomy.tag %}
{% include 'partials/blog/taxonomy.html.twig' %}
{% endif %}
{% if page.header.date %}
{% include 'partials/blog/date.html.twig' %}
{% endif %}
</div>
</div>