{% extends 'page.html' %} {% block main %}
{% block main_content %} {% if page and page.content %} {{ page.content | safe }} {% endif %}
{% set publications = load_data(path=page.extra.data, format="yaml") -%} {% for publication in publications %}
{{ publication.title | safe }} {% if publication.authors.short or publication.authors.full %}

...more
less

{% else %} {% endif %}
{% endfor %}
{% endblock %}
{% block outside %}{% endblock %} {% endblock %}