{% extends "base.html" %}
{% block content %}
{{ section.content | safe }}
Recent Posts
{% set ais = get_section(path="ais/_index.md") %}
{% set homelab = get_section(path="homelab/_index.md") %}
{% set ml_tech = get_section(path="ml-tech/_index.md") %}
{% set all_pages = ais.pages | concat(with=homelab.pages) | concat(with=ml_tech.pages) %}
{% for page in all_pages | sort(attribute="date") | reverse | slice(end=5) %}
-
{{ page.title }}
{% endfor %}
{% endblock content %}