{% extends "library/_layout.html" %} {% from "_macros.html" import icon %} {% set section = "notes" %} {% block title %}{{ note.title if note else "New note" }} - {{ brand.name }}{% endblock %} {% block heading %}{{ note.title if note else "New note" }}{% endblock %} {% block library_content %}
{{ icon("chevron-right", "icon--sm") }} All notes

Shown in search results, so it is what decides whether a model opens it.

{% if note and note.author == "model" %}

{{ icon("sparkle", "icon--sm") }} Written by a model. Edit it freely — it is yours.

{% endif %}
{% if note %}{% include "library/_share.html" %}{% endif %} {% if not note or is_owner %}
{% if note %} {% endif %}
{% endif %}
{% if note and body_html %}

Rendered

{{ body_html|safe }}
{% endif %} {% endblock %}