forked from WeLoveSpeed/welovespeed.com
-
Notifications
You must be signed in to change notification settings - Fork 1
/
sponsors.html
24 lines (24 loc) · 1.34 KB
/
sponsors.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{% assign othersCount = site.data.sponsors.others|size %}
<section id="sponsors-logo" class="section">
<div class="wrapper">
<a class="sr-only" src="{% unless include.shorturl %}{{ page.baseurl | default:site.baseurl }}/{{ "programme" | t: include.locale }}{% endunless %}#conferences" >{% t Aller directement aux descriptions des sponsors %}</a>
<div class="grid-2 text-center">
{% for sponsor in site.data.sponsors.gold %}
{% capture sponsor-url %}{% unless include.shorturl %}{{ page.baseurl | default:site.baseurl }}/{{ "merci" | t: include.locale }}{% endunless %}#{{sponsor.slug}}{% endcapture %}
<figure class="company-logo-big">
<a title="{{ "En savoir plus sur %s" | t: include.locale | replace:"%s",sponsor.name }}" href="{{ sponsor-url }}"><img src="{{ sponsor.logo }}" alt="{{sponsor.name}}" /></a>
</figure>
{%- endfor -%}
</div>
{% if othersCount > 0 %}
<hr>
<div class="grid-4 text-center grid-other-sponsors">
{% for sponsor in site.data.sponsors.others %}
<figure class="company-logo-big">
<a title="{{ "En savoir plus sur %s" | t: include.locale | replace:"%s",sponsor.name }}" href="{{ sponsor.url }}"><img src="{{ sponsor.logo }}" alt="{{sponsor.name}}" /></a>
</figure>
{%- endfor -%}
</div>
{% endif %}
</div>
</section>