{% extends "base.html" %} {% block content %} {% from 'bootstrap5/utils.html' import render_icon %}

Home

{% for note in notes %}
{{ note.title }}{% if note.private %} Private {{render_icon('file-lock')}} {% endif %}
{{ note.created_at.strftime('%Y-%m-%d %H:%M') }}

{{ note.text | safe }}

{% endfor %} {% include "partials/create_note_modal.html" %} {% if notes | length == 0 %}

Create your first note!

{% endif %}
{% endblock %} {% block scripts %} {{ ckeditor.load() }} {% endblock %}