12 lines
409 B
HTML
12 lines
409 B
HTML
{% from "macros/translation.html" import transbag %}
|
|
|
|
{% macro badge(type, name, alt) %}
|
|
|
|
{% if name is string %}
|
|
<dt>{{ type }}:</dt><dd>{{ transbag('labels', alt, name) }}</dd>
|
|
{% else %}
|
|
<dt>{{ type }}:</dt><dd>{% for n in name %}{% if loop.index != 1 %}, {% endif %} {{ transbag('labels', alt, n)|trim }}{% endfor %}</dd>
|
|
{% endif %}
|
|
|
|
<!-- <img src="badges/{{type}}/{{name}}"> -->
|
|
{% endmacro %}
|