BLOG/templates/index.html

22 lines
515 B
HTML

{% import "macros/macros.html" as post_macros %}
<!DOCTYPE html>
<html lang="{{lang}}">
{% include "partials/header.html" %}
<body>
<div class="content">
{% include "partials/head.html" %}
{% block main_content %}
<main class="list">
{% set section = get_section(path="_index.md") %}
{{ post_macros::list_title(pages=section.pages) }}
</main>
{% endblock main_content %}
{% include "partials/footer.html" %}
</div>
</body>
</html>