aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/templates/resources/resource_box.html
blob: af7c8d655ca0fa13231fd5fb7beff8e665a3c989 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% load as_icon %}

<div class="box" style="max-width: 800px;">
    {% if 'title_url' in resource %}
        <a href="{{ resource.title_url }}">
            {% include "resources/resource_box_header.html" %}
        </a>
    {% else %}
        {% include "resources/resource_box_header.html" %}
    {% endif %}

    <p class="is-italic">{{ resource.description|safe }}</p>

    {# Icons #}
    {% for icon in resource.urls %}
        <span class="icon is-size-4 is-medium" style="margin: 5px;">
            <a href="{{ icon.url }}">
                <i class="{{ icon.icon|as_icon }} is-size-3 resource-icon is-{{ icon.color }}"></i>
            </a>
        </span>
    {% endfor %}
</div>