33 lines
1.3 KiB
Twig
33 lines
1.3 KiB
Twig
---
|
|
layout: page
|
|
title: Our 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>
|
|
|
|
<div class="tw--mb-20">
|
|
{% for level in site.sponsorship_levels %}
|
|
{% 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 %}
|
|
<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>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|