Files
aircox-radiocampus/cms/templates/cms/sections/section_link.html

14 lines
288 B
HTML

{% extends "cms/sections/section_item.html" %}
{% load wagtailimages_tags %}
{% block content %}
{% with link=self.as_dict %}
<a href="{{ link.url }}">
{% if link.icon %}{% image link.icon fill-32x32 class="icon" %}{% endif %}
{{ link.text }}
</a>
{% endwith %}
{% endblock %}