bulma/docs/_includes/elements/sponsor-item.html

35 lines
907 B
HTML
Raw Normal View History

2019-02-07 18:03:02 +00:00
{% assign sponsor = site.data.sponsors.by_id[include.sponsor_id] %}
2019-06-28 11:24:30 +00:00
{% assign sponsor_path = "amis/" | append: include.sponsor_id %}
2019-02-07 18:03:02 +00:00
{% assign sponsor_alt = sponsor.name | append: " logo" %}
2019-07-18 09:20:17 +00:00
{% if sponsor.title != "" %}
{% assign sponsor_alt = sponsor.title %}
{% endif %}
2019-02-07 18:03:02 +00:00
<div class="{{ include.classname }}">
<a
2020-02-20 21:08:58 +00:00
class="bd-sponsor-item"
2019-02-07 18:03:02 +00:00
href="{{ sponsor.url }}"
target="_blank"
2020-09-03 09:52:37 +00:00
{% unless sponsor.follow or sponsor.noopener %}
2019-02-07 18:03:02 +00:00
rel="nofollow"
2019-03-13 19:01:37 +00:00
{% endunless %}
2020-09-03 09:52:37 +00:00
{% if sponsor.noopener %}
rel="noopener"
{% endif %}
2019-07-18 09:20:17 +00:00
title="{{ sponsor_alt }}"
2019-02-07 18:03:02 +00:00
>
2020-05-17 12:43:03 +00:00
{% if sponsor.textOnly %}
<strong>{{ sponsor.textOnly }}</strong>
{% else %}
2019-02-07 18:03:02 +00:00
{%
2020-05-17 12:43:03 +00:00
include elements/responsive-image-2x.html
path=sponsor_path
extension="png"
alt=sponsor_alt
width=sponsor.width
height=sponsor.height
%}
{% endif %}
2019-02-07 18:03:02 +00:00
</a>
2019-06-28 11:24:30 +00:00
</div>