{% extends "base.html" %} {% block content %}
{% for note in notes %}
{% if note.title %}
{{note.title}}
{% else %}
{{note.url}}
{% endif %}
{% endfor %}
{% endblock %}