{# field_notes (editorial) — dated notebook entries: small-caps dateline over a short note, hairline-ruled. Fields: title, notes[].date/note. #}
{% if title %}
{{ title }}

{% endif %} {% if notes %}
{% for entry in notes %}
{% if entry.date %}
{{ entry.date }}
{% endif %} {% if entry.note %}
{{ entry.note|safe }}
{% endif %}
{% endfor %}
{% endif %}