31 lines
848 B
Twig
31 lines
848 B
Twig
<div class="px-4 mx-auto mt-10 mb-10 max-w-screen-xl">
|
|
<h2 class="sr-only">Sponsors</h2>
|
|
|
|
<div>
|
|
{% include 'includes/sponsor-list.html.twig' with {
|
|
title: 'Platinum Sponsors',
|
|
type: 'platinum',
|
|
} only %}
|
|
|
|
{% include 'includes/sponsor-list.html.twig' with {
|
|
title: 'Gold Sponsors',
|
|
type: 'gold',
|
|
} only %}
|
|
|
|
{% include 'includes/sponsor-list.html.twig' with {
|
|
title: 'Silver Sponsors',
|
|
type: 'silver',
|
|
} only %}
|
|
|
|
{% include 'includes/sponsor-list.html.twig' with {
|
|
title: 'Bronze Sponsors',
|
|
type: 'bronze',
|
|
} only %}
|
|
|
|
{% include 'includes/sponsor-list.html.twig' with {
|
|
title: 'In Kind Sponsors',
|
|
type: 'in_kind',
|
|
} only %}
|
|
</div>
|
|
</div>
|