{% if post.extra.imgPath %} {% set img_url = get_url(path='/' ~ post.relative_path | replace(from='_', to='-') | replace(from='index.md', to=post.extra.imgPath)) %} {% endif %}

{{ post.title }}

{% if post.description %}

{{ post.description }}

{% endif %}
    {% if post.taxonomies.people %} {% for author in post.taxonomies.people %} {% set author_path = 'people/' ~ author ~ '/index.md' %} {% set people = get_section(path="people/_index.md") %} {% set pages_str = people.pages | json_encode() | as_str %} {% if pages_str is containing(author) %} {% set author = get_page(path=author_path) %} {% set author_img = get_url(path='/' ~ author.relative_path | replace(from='_', to='-') | replace(from='index.md', to=author.extra.imgPath)) %}
  • {{ author.title }}
  • {% endif %} {% endfor %} {% endif %}