1
0
Fork 0
mirror of https://github.com/eosswedenorg/apt synced 2026-06-16 04:34:56 +02:00
apt/_includes/package-list.html

12 lines
253 B
HTML

<div>
<h4>{{ include.title }}</h4>
{% if include.list.size > 0 %}
<ul>
{% for item in include.list %}
<li>{{ item }}</li>
{% endfor %}
</ul>
{% else %}
<p class="text-gray-light ml-4">None</p>
{% endif %}
</div>