{% extends "layout.html" %} {% set active = 'notes' %} {% block page_title %}Recherche / Notizen – AzA Intern{% endblock %} {% block content %} {% if notes %} {% for n in notes %}

{{ n.category or '–' }} · {{ n.author }} · {{ n.updated_at }} {% for tag in n.tags %}{{ tag }}{% endfor %}

{% if n.body %}

{{ n.body }}

{% endif %}
{% endfor %} {% else %}

Noch keine Notizen.

{% endif %} {% endblock %}