uninsane/templates/index.html
2022-04-04 23:42:22 +00:00

18 lines
366 B
HTML

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