added a shortcode for notes/meta info, and a Reading section

This commit is contained in:
Lewis Wynne 2026-05-02 18:57:48 +01:00
parent 3416521f89
commit 4825a52edd
11 changed files with 86 additions and 19 deletions

View file

@ -4,10 +4,18 @@
{% block content %}
<p></p>
<p>This site was once more complicated, but I've stripped it down to bare essentials.</p>
{% set blog = get_section(path="blog/_index.md") %}
{% for post in blog.pages %}
{{ post.date }}&emsp;<a href="{{ post.permalink }}">{{ post.title }}</a><br>
{% endfor %}
<p>Reading</p>
{% set reading = get_section(path="reading/_index.md") %}
{% for post in reading.pages %}
{{ post.date}}&emsp;<a href="{{ post.permalink }}">{{ post.title }}</a><br>
{% endfor %}
{% endblock %}