blob: af86c23982109a959cf7e8b8496623049a21ca5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{% extends "base.html" %}
{% block content %}
{% set posts = get_section(path="posts/_index.md") %}
# {{ section.title }}
=> /atom.xml Follow via Atom/RSS
=> https://aboutfeeds.com/ Huh?
{% for page in posts.pages %}
=> {{ page.path }} {{ page.title }} ({{ page.date | date(format="%Y-%m-%d") }})
{% endfor %} {% endblock %}
|