{% extends "base.html" %} {% block title %}Memories — MemoTrail{% endblock %} {% block content %}

Memories ({{ memories|length }})

Add Memory
{% for m in memories %}
{{ m.id }} Updated: {{ m.updated_at[:16] }}

{{ m.content }}

{% if m.tags %}

Tags: {{ m.tags | join(', ') }}

{% endif %}
{% endfor %} {% if not memories %}

No memories saved yet. Add one above!

{% endif %} {% endblock %}