{% extends "base.html" %}
{% block content %}
{{ page.title }}
{{ page.content | safe }}
Latest news
{% set news_section = get_section(path="news/_index.md") %}
{% for page in news_section.pages %}
{{ page.title }}
{% endfor %}
{% endblock content %}