mirror of
https://github.com/GSA/notifications-admin.git
synced 2025-12-11 07:33:36 -05:00
12 lines
367 B
HTML
12 lines
367 B
HTML
{% macro content_metadata(data, suffix=False) %}
|
|
<div class="content-metadata">
|
|
{% for key, value in data.items() %}
|
|
<span class="content-metadata__term">{{ key }}</span>
|
|
<span class="content-metadata__definition">{{ value }}</span>
|
|
{% endfor %}
|
|
{% if suffix %}
|
|
<p class="content-metadata__suffix">{{ suffix }}</p>
|
|
{% endif %}
|
|
</div>
|
|
{% endmacro %}
|