{% for note in notes %}
{% if note.title %}
{{ note.title|capitalize }}:
{% endif %}
{% if note.description %}
{{ note.description }}
{% endif %}
{% if note.citations %}
({{ note.citations }})
{% endif %}
{% endfor %}