{% for key, value in data.items() if key not in meta_keys %}
{% if value.title is not none %}
{{value.title}}
{% endif %}
{% if value.authors is not none %}
{% set authors = value.authors if value.authors is not none else [] %}
{% for author in authors %}
<{% if author.link %}a href="{{author.link}}"{% else %}span{% endif %} {% if not author.me %}class="text-secondary"{% else %}class="text-dark"{% endif %}>
{{ author.me if author.me else author.name if author is mapping and author.name is not none else author }}{% if author.link %}a{% else %}span{% endif %}>{% if not loop.last %},{% endif %}
{% endfor %}
{% if value.authors_notes %}
- {{ value.authors_notes }}
{% endif %}
{% endif %}
{% if 'tags' in value %}
{{markdown(value.tags)}}
{% endif %}
{% if value.content %}
{{markdown(value.content)}}
{% endif %}
{% if not loop.last %}
{% endif %}
{% endfor %}