You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- {% 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_sorted_by_time() %}
- {% for res in posts[0:3] %}
-
- {% refer to res.relative_path as post %}
- {{ post.post }}
-
- {% endfor %}
-
- <section>
-
- {% set nextpost = posts[3] %}
- <p class='prevnext'>
- <span class="small">
- <a class="prev{{' disabled' if not nextpost }}"
- title="{{ nextpost.meta.title }}"
- {% if nextpost %}
- href="{{ itemurl(nextpost) }}"{% endif %}>
- Previous Post
- </a>
- </span>
- </p>
- </section>
-
- {% endblock %}
-
- {% block copyright %}
- Copyright © {{ time_now|date_format("%Y") }} John-Mark Gurney
- <br>
- Also on <a rel="me" href="https://flyovercountry.social/@encthenet">Mastodon</a>
- {% endblock %}
|