first implementation of new layout

This commit is contained in:
2021-11-18 13:11:39 +00:00
committed by Patrick Mayr
parent 206a71fb6f
commit a9db4e27f7
26 changed files with 205320 additions and 513 deletions

View File

@@ -1,9 +1,8 @@
{# only thumb and name of member #}
<a class="thumbnail member-thumb" href="{{ member.get_absolute_url }}" style="width:150px; height:150px">
<img src="{{ member.image.thumb.url }}" alt="" />
<div class="thumb-layer">
<div>
<h1>{{member.nickname}}</h1>
</div>
</div>
</a>
<figure>
<a href="{{ member.get_absolute_url }}">
<img loading="lazy" src="{{ member.image.thumb.url }}" alt="Portraitfoto von {{ member.firstname }}" class="w-36 h-36 bg-white">
<figcaption>
<h3>{{ member.firstname }} {{ member.surname }}</h3>
</figcaption>
</a>
</figure>