This commit is contained in:
Pascal Engélibert
2023-03-20 19:06:57 +01:00
parent e060604096
commit 19c19e3114
28 changed files with 104 additions and 22 deletions

View File

@ -0,0 +1,17 @@
<div class="team_box">
<a class="team_box-link">
<div class="team_box-img_wrap"><img class="team_box-img" src="/img/team/{{img|safe}}" alt="{{title}}" aria-hidden/></div>
<span class="team_box-title">{{title|safe}}</span>
{% if place %}
<span class="team_box-place">{{place|safe}}</span>
{% endif %}
{% if subtitle %}
<br/>
<span class="team_box-subtitle">{{subtitle|safe}}</span>
{% endif %}
{% if description %}
<br/>
<span class="team_box-description">{{description|safe}}</span>
{% endif %}
</a>
</div>