{% extends "base.html.j2" %} {% import 'macros.imp.j2' as macros %} {% block title %}{{ title | e }} — {{ author | e }}{% endblock %} {% block content %}

{{ title | e }}
{{ author | e }}

{# TODO: copy pasted from dangerous/search.j2 #} {% for card in rows %} {{ macros.typed_card(card) }} {% endfor %} {{ macros.dummycard() }}
{% if not rows|length %}no more results{% endif %}
{% if page is not none %} {{ macros.pagination("previous", {'page':(-1,1)}, -1) if page > 1 }} {{ macros.pagination("next", {'page':(+1,1)}, +1) if has_more }} {% endif %}
{% endblock %}