wip: programme

This commit is contained in:
mco-system
2023-04-09 19:04:35 +11:00
parent e04e12e8f9
commit 3726814e11
5 changed files with 19 additions and 9 deletions

View File

@@ -8,7 +8,9 @@
{% if speaker.avatar or speaker.biography %}
<div class="details">
{% if speaker.avatar %}
<img src="{{speaker.avatar}}">
<img src="{{speaker.avatar}}"
alt=""
title="">
{% endif %}
{% if speaker['biography'] %}
<p class="thin">{{speaker.biography}}</p>
@@ -29,7 +31,10 @@
<div class="details thin">
<div class="abstract">
{% if slot['image'] %}
<img class="data_img" src="{{slot.image}}">
<img class="data_img"
src="{{slot.image}}"
alt=""
title="">
{% endif %}
<p>{{slot.abstract}}</p>
</div>