2019-10-08 12:57:46 +00:00
|
|
|
{% if not append | deep_get(role, "internal.append") %}
|
2019-10-07 06:52:00 +00:00
|
|
|
{% set meta = role.meta | default({}) %}
|
2023-02-09 18:27:22 +00:00
|
|
|
# {{ meta.name.value | safe_join(" ") }}
|
2019-10-08 12:57:46 +00:00
|
|
|
{% endif %}
|
2019-10-08 09:30:31 +00:00
|
|
|
{% if description | deep_get(meta, "description.value") %}
|
2023-02-16 19:55:31 +00:00
|
|
|
{% set description = [meta.description.value] if meta.description.value is string else meta.description.value %}
|
2019-10-07 06:52:00 +00:00
|
|
|
|
2023-02-16 19:55:31 +00:00
|
|
|
{{ description | map("replace", "\n\n", "\n") | safe_join("\n") }}
|
2019-10-07 06:52:00 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2019-10-08 11:43:41 +00:00
|
|
|
{# TOC #}
|
2022-02-21 20:38:47 +00:00
|
|
|
{% include '_toc.j2' %}
|
2019-10-08 11:43:41 +00:00
|
|
|
|
2019-10-07 06:52:00 +00:00
|
|
|
{# Vars #}
|
2022-02-21 20:38:47 +00:00
|
|
|
{% include '_vars.j2' %}
|
|
|
|
|
2022-02-26 12:35:34 +00:00
|
|
|
{# Todo #}
|
|
|
|
{% include '_tag.j2' %}
|
|
|
|
|
2022-02-21 20:38:47 +00:00
|
|
|
{# Todo #}
|
|
|
|
{% include '_todo.j2' %}
|
2019-10-08 09:30:31 +00:00
|
|
|
|
|
|
|
{# Meta #}
|
2022-02-21 20:38:47 +00:00
|
|
|
{% include '_meta.j2' %}
|