22 lines
919 B
Twig
22 lines
919 B
Twig
{% trans_default_domain 'articles' %}
|
|
<div {{ attributes }}>
|
|
<a href="{{ this.url }}">
|
|
<twig:Picture img_class="img-fluid" thumbnail="{{ this.thumbnail|default(null) }}" type="article_thumb" alt="{{ this.title }}"/>
|
|
</a>
|
|
<div class="content">
|
|
{% if this.show_flags %}
|
|
<twig:Articles:ArticleFlag id_article="{{ this.article.id }}"/>
|
|
{% endif %}
|
|
<p class="title"><a href="{{ this.url }}">{{ this.title }}</a></p>
|
|
<twig:block name="article_info">
|
|
<twig:Articles:ArticleInfo article="{{ this.article }}" showDate="{{ true }}" showSection="{{ false }}"/>
|
|
</twig:block>
|
|
{% if this.show_lead %}
|
|
<p class="lead">{{ this.lead }}</p>
|
|
{% endif %}
|
|
<a href="{{ this.url }}" title="{{ this.title }}" class="btn-link">{{ 'articles.read'|trans }}
|
|
<twig:ux:icon name="caret-right" class="c-icon arrow-icon"/>
|
|
</a>
|
|
</div>
|
|
</div>
|