dcbristol-2019-static/source/sponsors.html.twig

33 lines
1.3 KiB
Twig
Raw Normal View History

2019-04-25 20:09:19 +00:00
---
layout: page
2019-05-30 19:13:47 +00:00
title: Our Sponsors
2019-04-25 20:09:19 +00:00
---
2019-04-25 20:12:44 +00:00
<div>
2019-05-20 23:48:00 +00:00
<p>DrupalCamp Bristol would like to say a massive <strong>THANK YOU!</strong> to all of our incredible sponsors. Without your support, this event would never have been possible.</p>
<p>If you'd like to get involved with sponsorship, head over to our <a href="/sponsorship">Sponsorship</a> page. We'll be on the lookout for new sponsors up until the day of the event.</p>
2019-04-25 20:12:44 +00:00
</div>
<div class="tw--mb-20">
{% for level in site.sponsorship_levels %}
2019-05-20 23:48:00 +00:00
{% set sponsors = getSponsors(site.sponsors, level) %}
{% if sponsors %}
<section class="tw-block tw-mb-24">
<h2 class="tw-mb-6">{{ level ~ ' Sponsors'|capitalize }}</h2>
<div class="tw--mb-8 {{ level == 'gold' ? '' : 'tw-flex tw-flex-wrap tw--mx-2' }}">
{% for sponsor in sponsors %}
2019-05-30 18:30:21 +00:00
<article class="tw-mb-12 {{ level == 'gold' ? 'tw-w-full' : 'tw-w-1/2 md:tw-w-1/4 lg:tw-w-1/6 tw-px-2' }}">
{% set template = (level == 'gold') ? 'sponsors/full' : 'sponsors/teaser' %}
{% include template with {
description: sponsor.description,
logo: sponsor.logo,
name: sponsor.name,
url: sponsor.url,
} %}
</article>
{% endfor %}
</div>
</section>
2019-05-20 23:48:00 +00:00
{% endif %}
{% endfor %}
</div>