blob: 98cc14868df38f43efd7365ff2c913e504024eeb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{% extends "base.html" %}
{% block content %}
{{ section.content | safe }}
<br/>
recent posts
{% set section = get_section(path="blog/_index.md") %}
<ul>
{% for page in section.pages | slice(end=5) %}
<li><a href="{{page.permalink}}">{{page.title}}</a> ({{page.date}})</li>
{% endfor %}
</ul>
{% endblock content %}
|