{% extends "base.html" %} {% block title %}{{ section.title }}{% endblock title %} {% block header_logo %}

{% endblock header_logo %} {% block content %}

Home

{% if section.toc %}

Table of Contents

{% endif %} {% set archive_section = get_section(path="archive/_index.md") %} {% set all_pages = archive_section.pages %} {% set sorted_pages = all_pages | sort(attribute="date") | reverse | slice(end=3) %} {% if sorted_pages %}

Recent Entries

{% endif %} {{ section.content | safe }} {% endblock content %}