Move all files to 2019/

This commit is contained in:
Oliver Davies 2025-09-29 22:25:20 +01:00
parent f59a1843de
commit 0b536af737
94 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,32 @@
---
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>