website/templates/shortcodes/team_box.html

22 lines
588 B
HTML
Raw Normal View History

2023-03-20 18:06:57 +00:00
<div class="team_box">
<div class="team_box-top">
2023-05-12 08:19:07 +00: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 16:03:45 +00:00
</div>
2023-04-19 13:56:53 +00:00
{% if body %}
<div class="team_box-bottom">
2023-04-19 13:56:53 +00:00
<p class="team_box-description">{{body|safe}}</p>
</div>
{% endif %}
2023-03-20 18:06:57 +00:00
</div>