20 lines
356 B
HTML
20 lines
356 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
{{ page.title }}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% set section = get_section(path="docs/_index.md") %}
|
|
|
|
<nav>
|
|
<b>pages</b>
|
|
{% for page in section.pages %}
|
|
<a href="{{page.path}}">{{page.title}}</a>
|
|
{% endfor %}
|
|
</nav>
|
|
<main>
|
|
<h1>{{ page.title }}</h1>
|
|
{{ page.content | safe }}
|
|
</main>
|
|
{% endblock %}
|