You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
390 B
HTML
19 lines
390 B
HTML
{% extends "index.html" %}
|
|
|
|
{% block content %}
|
|
<main class="page">
|
|
{{ section.content | safe }}
|
|
|
|
{% for article in section.pages -%}
|
|
{% include "feed_item.html" %}
|
|
{%- endfor %}
|
|
|
|
|
|
{% for subs in section.subsections -%}
|
|
{%- set s = get_section(path=subs) -%}
|
|
<a href="{{s.permalink}}"><h2>{{s.title}}</h2></a>
|
|
{%- endfor %}
|
|
|
|
</main>
|
|
{% endblock content %}
|