26 lines
849 B
Twig
26 lines
849 B
Twig
<div class="tw-mb-4">
|
||
<h3 class="tw-mb-5">{{ 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-button tw-inline-block tw-w-auto tw-bg-purple-600 hocus:tw-bg-green-600 tw-text-base tw-px-4 tw-py-2 tw-mx-0 tw-mt-2">
|
||
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-block tw-w-48 md:tw-w-auto tw-max-w-full">
|
||
</div>
|
||
{% endif %}
|
||
</div>
|
||
</div>
|