Files @ d3a8b39a7b01
Branch filter:

Location: symposion_app/pinaxcon/templates/symposion/sponsorship/_sponsor_link.html

Christopher Neugebauer
Adds 2em to the bottom of the illustration div in compact panels (#26)
{% load thumbnail %}

{% spaceless %}
<a href="{{ sponsor.external_url }}">
    {% if dimensions %}
        <img id="sponsor_{{ sponsor.pk }}" src="{% thumbnail sponsor.logo dimensions %}" alt="{{ sponsor.name }}" />
    {% else %}
        <img id="sponsor_{{ sponsor.pk }}" src="{% thumbnail sponsor.logo '150x150' %}" alt="{{ sponsor.name }}" />
    {% endif %}
</a>
{% endspaceless %}