added a shortcode for notes/meta info, and a Reading section
This commit is contained in:
parent
3416521f89
commit
4825a52edd
11 changed files with 86 additions and 19 deletions
|
|
@ -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 }} <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}} <a href="{{ post.permalink }}">{{ post.title }}</a><br>
|
||||
{% endfor %}
|
||||
|
||||
{% endblock %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue