|
|
@@ -0,0 +1,24 @@ |
|
|
|
{% from "macros.j2" import itemurl %} |
|
|
|
{% extends "base.j2" %} |
|
|
|
|
|
|
|
{% block main %} |
|
|
|
<!-- |
|
|
|
{% block page_title %}<h1 class="title">{{ resource.meta.title }}</h1>{% endblock %} |
|
|
|
--> |
|
|
|
|
|
|
|
{% set posts = resource.node.walk_resources() | list %} |
|
|
|
{% for res in posts[0:3] %} |
|
|
|
{% if res.source.kind == "html" and res.meta.title != 'Drafts' %} |
|
|
|
<a title="{{ res.meta.title }}" |
|
|
|
href="{{ itemurl(res) }}"> |
|
|
|
{{ res.meta.title }} |
|
|
|
</a> |
|
|
|
|
|
|
|
{% endif %} |
|
|
|
{% endfor %} |
|
|
|
|
|
|
|
{% endblock %} |
|
|
|
|
|
|
|
{% block copyright %} |
|
|
|
Copyright © {{ time_now|date_format("%Y") }} John-Mark Gurney |
|
|
|
{% endblock %} |