BaySec website source
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.

listing.j2 348 B

12345678910111213
  1. {% extends "base.j2" %}
  2. {% from "macros.j2" import render_link with context %}
  3. {% block main %}
  4. {% block page_title %}<h1 class="title">{{ resource.meta.title }}</h1>{% endblock %}
  5. <ul class="listing clearfix">
  6. {% for res in resource.node.walk_resources_sorted_by_time() %}
  7. <li>
  8. {{ render_link(res) }}
  9. </li>
  10. {% endfor %}
  11. </ul>
  12. {% endblock %}