mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-06-07 15:01:55 -04:00
14 lines
374 B
HTML
14 lines
374 B
HTML
|
|
{% macro content_metadata(data, suffix=False) %}
|
||
|
|
<div class="content-metadata">
|
||
|
|
<dl>
|
||
|
|
{% for key, value in data.items() %}
|
||
|
|
<dt class="content-metadata__term">{{ key }}</dt>
|
||
|
|
<dd class="content-metadata__definition">{{ value }}</dd>
|
||
|
|
{% endfor %}
|
||
|
|
</dl>
|
||
|
|
{% if suffix %}
|
||
|
|
<p class="content-metadata__suffix">{{ suffix }}</p>
|
||
|
|
{% endif %}
|
||
|
|
</div>
|
||
|
|
{% endmacro %}
|