mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-11 08:23:49 +00:00
20 lines
539 B
HTML
20 lines
539 B
HTML
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load static %}
|
|
|
|
<div class="card thumbnail">
|
|
<a href="{{ item.url }}" class="nav-link">
|
|
<div class="card-title">{{ item.name }}</div>
|
|
<div class="card-icon">
|
|
{% if 'fa-' in item.icon %}
|
|
<span class="fa {{ item.icon }}"></span>
|
|
{% else %}
|
|
<img src="{% static 'theme/icons/' %}{{ item.icon }}.svg"/>
|
|
{% endif %}
|
|
</div>
|
|
<div class="card-description">{{ item.short_description|default:'' }}</div>
|
|
</a>
|
|
</div>
|