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