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() | 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 %}
-
- <div class="clear"></div>
- <section>
- <h1 id="{{ slug(resource) }}-title"><a class="no-tufte-underline" href="{{ itemurl(resource) }}">{{ resource.meta.title }}</a></h1>
- {% filter markdown|typogrify|rellinktoabs -%}
- {% block post -%}{%- endblock %}
- {%- endfilter %}
- </section>
-
- {% endblock %}
-
- {% block copyright %}
- Copyright © {{ time_now|date_format("%Y") }} John-Mark Gurney
- {% endblock %}
|