{% extends "layouts/base.html" %}
{% block extra_head %}
<link rel="alternative" type="application/atom+xml" title="RSS" href="{{ section.path }}atom.xml">
{% endblock extra_head %}
{% block content %}
<p>{{ section.title }}</p>
{% if section.pages %}
<div>
<p>has logs</p>
{% if section.generate_feed %}
<a href="{{ section.path }}atom.xml">RSS Feed</a>
{% endif %}
{% for page in section.pages %}
<a href={{ page.permalink }}>{{ page.title }}</a>
{% endfor %}
</div>
{% endif %}
<article class="prose lg:prose-lg">
{{ section.content | safe }}
</article>
{% endblock content %}