blob: 0925675152ffdc5969d70d6c7cef2842b937d1eb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
{% load as_icon %}
{% load get_category_icon %}
<div class="box resource-box {{ resource.css_classes }}">
{% 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>
<div class="is-flex is-align-items-center">
{# Add primary link #}
{% if 'title_url' in resource %}
<span class="icon is-size-4 is-medium" style="margin: 5px;">
<a href="{{ resource.title_url }}">
<i class="fas fa-link is-size-3 resource-icon is-primary"></i>
</a>
</span>
{% endif %}
{#Add all additional icon #}
{% 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 %}
{# Tags #}
<div class="is-flex ml-auto is-flex-wrap-wrap is-justify-content-end">
{% for tag in resource.tags.topics %}
<span class="tag is-primary is-light ml-2 mt-2"><i class="{{ tag|title|get_category_icon }} mr-1"></i>{{ tag|title }}</span>
{% endfor %}
{% for tag in resource.tags.type %}
<span class="tag has-background-success-light has-text-success-dark ml-2 mt-2"><i class="{{ tag|title|get_category_icon }} mr-1"></i>{{ tag|title }}</span>
{% endfor %}
{% for tag in resource.tags.payment_tiers %}
<span class="tag has-background-danger-light has-text-danger-dark ml-2 mt-2"><i class="{{ tag|title|get_category_icon }} mr-1"></i>{{ tag|title }}</span>
{% endfor %}
{% for tag in resource.tags.complexity %}
<span class="tag has-background-info-light has-text-info-dark ml-2 mt-2"><i class="{{ tag|title|get_category_icon }} mr-1"></i>{{ tag|title }}</span>
{% endfor %}
</div>
</div>
</div>
|