File indexing completed on 2025-05-04 04:55:46
0001 <html> 0002 0003 {% if notes %} 0004 {% for note in notes %} 0005 <h1 align="center" style="background-color:red;">{{ note.name }}</h1> 0006 <br> 0007 <p>{{ note.description|safe }}</p> 0008 <br> 0009 <br> 0010 {% endfor %} 0011 {% endif %} 0012 0013 </html> 0014