21 lines
627 B
HTML
21 lines
627 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ config.title }}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<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 %}
|
|
<span class="muted">{{ post.date }}</span> <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 %}
|
|
<span class="muted">{{ post.date}}</span> <a href="{{ post.permalink }}">{{ post.title }}</a><br>
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|