mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-10-01 10:59:45 +00:00
16 lines
473 B
Twig
16 lines
473 B
Twig
<div class="flex-table">
|
|
<div class="item-bloc">
|
|
<p class="date-label">
|
|
<span>{{ entity.startDate|format_date('long') }}</span>
|
|
{% if entity.endDate is not null %}
|
|
<span> - {{ entity.endDate|format_date('long') }}</span>
|
|
{% endif %}
|
|
</p>
|
|
</div>
|
|
<div class="item-bloc">
|
|
<div class="news-content">
|
|
{{ entity.content|chill_markdown_to_html }}
|
|
</div>
|
|
</div>
|
|
</div>
|