{% if metadata and metadata.date %} {% endif %}
{% set siblings = get_sibling_content_files(currentPath) %} {% if siblings and siblings|length > 1 %} {% set current_index = namespace(value=-1) %} {% for sibling in siblings %} {% if sibling[1] == currentPath %} 🖹 {{ sibling[0] }} {% else %} 🖹 {{ sibling[0] }} {% endif %} {% endfor %} {% endif %}
{% set siblingsfolders = get_sibling_content_folders(currentPath) %} {% if siblingsfolders and siblingsfolders|length > 1 %} {% set current_index = namespace(value=-1) %} {% for siblingf in siblingsfolders %} {% if siblingf.path == currentPath %} {% set current_index.value = loop.index0 %} {% endif %} 🗀 {{ siblingf[0] }} {% endfor %} {% endif %}

{{ content|safe }}
{% if metadata and metadata.tags %}
Tagged: {% for tag in metadata.tags %} {{ tag }}{% if not loop.last %}, {% endif %} {% endfor %}
{% endif %}