playbooks/roles/vhosts/qmd/templates/index.yml.j2
2026-05-26 12:58:56 +08:00

13 lines
347 B
Django/Jinja

collections:
{% for name, collection in qmd_collections | dictsort %}
{{ name }}:
path: {{ collection.path }}
pattern: {{ collection.pattern | to_json }}
{% if collection.context is defined %}
context:
{% for path, text in collection.context | dictsort %}
{{ path | to_json }}: {{ text }}
{% endfor %}
{% endif %}
{% endfor %}