{% extends "base.html" %} {% block title %}Notes — PKM{% endblock %} {% block content %}

Notes

New note
{% if notes %}
{% for n in notes %}
{{ n.title }} {{ n.updated }}
{% if n.tags %}
{% for t in n.tags %} {{ t }} {% endfor %}
{% endif %}
{% endfor %}
{% else %}
No notes yet. Create your first one.
{% endif %} {% endblock %}