- {% for author in page.extra.authors %}
- {% set fullpath = "/people/" ~ author | replace(from='_', to='-' ) %}
+ {% if page.taxonomies.people %}
+ {% for person in page.taxonomies.people %}
+ {% set author_path = 'people/' ~ person ~ '/index.md' %}
+ {% set author = get_page(path=author_path) %}
- {{ author | replace(from='_', to=' '
- ) }}
+ {{ author.title }}
- {% endfor %}
+ {% endfor %}
+ {% endif %}