bulma/docs/_includes/elements/sponsor-item.html
2019-08-01 09:43:09 +01:00

27 lines
673 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.height
%}
</a>
</div>