publik-base-theme/templates/variants/toodego/combo/cells/tile/link-cell.html

24 lines
1.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% load gnm assets %}
{% with producer=cell.extra_css_class|as_producer %}
{% with logo="logo:"|add:producer.slug picture="picture:"|add:producer.slug %}
<a href="{{url}}" class="tile-link">
<div class="tile {{producer.slug}}">
<div class="tile-picture" style="background-image: {% asset_css_url cell.link_page.picture picture size="300x300" crop="center" format="JPEG" %}"></div>
<div class="tile-head">
<div class="tile-title">
<h2 class="cell--title">{{title}}</h2>
<h3>{{ producer.label }}</h3>
{% if cell.link_page.description %}<div class="description"><p>{{ cell.link_page.description }}</p></div>{% endif %}
<span class="producer" style="background-image: {% asset_css_url logo %}">{{ producer.label }}</span>
</div>
</div>
<div class="tile-content">
<div class="tile-actions">
<span class="action-more-info">Plus dinfos</span>
</div>
</div>
</div>
</a>
{% endwith %}
{% endwith %}