uninsane/templates/index.html

19 lines
392 B
HTML

{% extends "base.html" %}
{% block content %}
{% set blog = get_section(path="blog/_index.md") %}
{% set about = get_page(path="about.md") %}
<h1 class="title">
{{ section.title }}
</h1>
<a href="{{ about.permalink | safe }}">about</a>
<ul>
{% for page in blog.pages %}
<li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li>
{% endfor %}
</ul>
{% endblock content %}