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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
|
{% extends "index.html" %}
|
|
|
|
|
|
|
|
{% block subtitle %}
|
|
|
|
{% set current_section = get_section(path=page.ancestors[1]) %}
|
|
|
|
{{ current_section.title }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{{ page.content | safe }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block menu %}
|
|
|
|
{% set global_section = get_section(path="_index.md") %}
|
|
|
|
{% for s in global_section.subsections %}
|
|
|
|
{% set subsection = get_section(path=s) %}
|
|
|
|
<li {% if current_path == subsection.path %}class="active"{% endif %}>
|
|
|
|
<a href="{{ subsection.permalink }}">{{ subsection.title }}</a>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block nav %}
|
|
|
|
{% if current_section.pages %}
|
|
|
|
<ul>
|
|
|
|
{% for post in current_section.pages %}
|
|
|
|
<li><a href="{{ post.permalink }}">{{ post.title }}</a></li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|