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.
|
- {% extends "base.j2" %}
- {% from "macros.j2" import render_link with context %}
- {% block main %}
- {% block page_title %}<h1 class="title">{{ resource.meta.title }}</h1>{% endblock %}
-
- <h2> {% for res in resource.node.walk_resources_sorted_by_time()[0:1] %}
- {{ render_link(res) }}
- {% endfor %}
- </h2>
-
- {% endblock %}
|