{% extends "base.html" %} {% block title %}Memory Vault - Memory Archive{% endblock %} {% block content %}

💾 Memory Vault

+ Store Memory
{% if documents %}
{% for document in documents %}
{{ document.heading }}
Created: {{ document.created_time.strftime('%Y-%m-%d %H:%M') }} {% if document.modified_time != document.created_time %} | Modified: {{ document.modified_time.strftime('%Y-%m-%d %H:%M') }} {% endif %}
View Edit
{% endfor %}
{% else %}

🌟 Memory vault is empty

Store your first memory to begin your journey.

Store First Memory
{% endif %} {% endblock %}