bulma/docs/_includes/elements/sponsor-item.html
2019-07-20 12:21:34 +02:00

27 lines
672 B
HTML

{% assign sponsor = site.data.sponsors.by_id[include.sponsor_id] %}
{% assign sponsor_path = "amis/" | append: include.sponsor_id %}
{% assign sponsor_alt = sponsor.name | append: " logo" %}
{% if sponsor.title != "" %}
{% assign sponsor_alt = sponsor.title %}
{% endif %}
<div class="{{ include.classname }}">
<a
href="{{ sponsor.url }}"
target="_blank"
{% unless sponsor.follow %}
rel="nofollow"
{% endunless %}
title="{{ sponsor_alt }}"
>
{%
include elements/responsive-image-2x.html
path=sponsor_path
extension="png"
alt=sponsor_alt
width=sponsor.width
height=sponsor.width
%}
</a>
</div>