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

26 lines
843 B
Twig
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div class="tw-mb-4">
<h3>{{ name }}</h3>
<div class="tw-flex tw-flex-col-reverse md:tw-flex-row-reverse tw--mx-4">
<div class="tw-flex-1 tw-px-4">
{% if description %}
<div>
{{ description|markdown }}
</div>
{% endif %}
{% if url %}
<a href="{{ url }}" class="tw-inline-block tw-mt-1 tw-px-4 tw-py-2 tw-bg-purple-600 hocus:tw-bg-green-600 tw-text-white tw-no-underline tw-uppercase tw-font-semibold">
Visit <span class="tw-visuallyhidden">{{ name }}s</span> website
</a>
{% endif %}
</div>
{% if logo %}
<div class="tw-flex-none tw-px-4 tw-mb-3 md:tw-mb-0 tw-w-full md:tw-w-1/4">
<img src="/images/sponsors/{{ logo }}" alt="{{ name }} logo" class="tw-w-48 md:tw-w-auto tw-max-w-full">
</div>
{% endif %}
</div>
</div>