2019-11-27 13:11:43 +00:00
|
|
|
{% if not append | deep_get(role, "internal.append") %}
|
2019-11-26 15:40:55 +00:00
|
|
|
{% set meta = role.meta | default({}) %}
|
|
|
|
---
|
2023-02-09 18:27:22 +00:00
|
|
|
title: {{ meta.name.value | safe_join(" ") }}
|
2019-11-27 13:11:43 +00:00
|
|
|
type: docs
|
2022-06-07 11:40:02 +00:00
|
|
|
{% if summary | deep_get(meta, "summary.value") %}
|
2023-02-09 18:27:22 +00:00
|
|
|
summary: {{ meta.summary.value | safe_join(" ") }}
|
2022-06-07 11:40:02 +00:00
|
|
|
{% endif %}
|
2019-11-26 15:40:55 +00:00
|
|
|
---
|
2019-11-27 13:11:43 +00:00
|
|
|
{% endif %}
|
2019-11-26 15:40:55 +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-12-02 14:00:32 +00:00
|
|
|
|
2023-02-16 19:55:31 +00:00
|
|
|
{{ description | map("replace", "\n\n", "\n") | safe_join("\n") }}
|
2019-11-26 15:40:55 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2022-06-07 11:40:02 +00:00
|
|
|
<!--more-->
|
|
|
|
|
2019-11-26 15:40:55 +00:00
|
|
|
{# TOC #}
|
2022-02-21 20:38:47 +00:00
|
|
|
{% include '_toc.j2' %}
|
2019-11-26 15:40:55 +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-11-26 15:40:55 +00:00
|
|
|
|
|
|
|
{# Meta #}
|
2022-02-21 20:38:47 +00:00
|
|
|
{% include '_meta.j2' %}
|