mirror of
https://github.com/thegeeklab/ansible-doctor.git
synced 2024-11-04 20:30:43 +00:00
27 lines
524 B
Django/Jinja
27 lines
524 B
Django/Jinja
{% if not append | deep_get(role, "internal.append") %}
|
|
{% set meta = role.meta | default({}) %}
|
|
---
|
|
title: {{ meta.name.value | save_join(" ") }}
|
|
type: docs
|
|
---
|
|
{% endif %}
|
|
{% if description | deep_get(meta, "description.value") %}
|
|
|
|
{{ meta.description.value | save_join(" ") }}
|
|
{% endif %}
|
|
|
|
{# TOC #}
|
|
{% include '_toc.j2' %}
|
|
|
|
{# Vars #}
|
|
{% include '_vars.j2' %}
|
|
|
|
{# Todo #}
|
|
{% include '_tag.j2' %}
|
|
|
|
{# Todo #}
|
|
{% include '_todo.j2' %}
|
|
|
|
{# Meta #}
|
|
{% include '_meta.j2' %}
|