website/templates/shortcodes/team_box.html

22 lines
588 B
HTML
Raw Normal View History

2023-03-20 19:06:57 +01:00
<div class="team_box">
<div class="team_box-top">
2023-05-12 10:19:07 +02:00
<img class="team_box-img" src="/img/team/{{img|safe}}" alt="{{title}}" loading="lazy" aria-hidden/>
<div class="team_box-text">
<span class="team_box-title">{{title|safe}}</span>
{% if subtitle %}
<br/>
<span class="team_box-subtitle">{{subtitle|safe}}</span>
{% endif %}
{% if place %}
<br/>
<span class="team_box-place">{{place|safe}}</span>
{% endif %}
</div>
2023-03-27 18:03:45 +02:00
</div>
2023-04-19 15:56:53 +02:00
{% if body %}
<div class="team_box-bottom">
2023-04-19 15:56:53 +02:00
<p class="team_box-description">{{body|safe}}</p>
</div>
{% endif %}
2023-03-20 19:06:57 +01:00
</div>