dcbristol-2019-static/source/sponsors.html.twig
2019-05-29 22:10:43 +01:00

32 lines
1.2 KiB
Twig

---
layout: page
title: Sponsors
---
<div>
<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>
</div>
{% for level in site.sponsorship_levels %}
{% set sponsors = site.sponsors[level] %}
{% if sponsors %}
<section class="tw-block tw-mb-12">
<h2 class="tw-mb-4">{{ level ~ ' Sponsors'|capitalize }}</h2>
<div class="{{ level == 'gold' ? '' : 'tw-flex tw-flex-wrap tw--mx-2' }}">
{% for sponsor in sponsors %}
<article class="{{ level == 'gold' ? 'tw-w-full' : 'tw-w-1/2 md:tw-w-1/4 lg:tw-w-1/6 tw-px-2 tw-mb-6' }}">
{% 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>
{% endif %}
{% endfor %}