7 <meta charset=
"UTF-8" />
8 <meta name=
"viewport" content=
"width=device-width, initial-scale=1.0" />
13 {% for note in notes %}
14 <h2>{{ note.title }}
</h2>
15 <p>ID: {{ note.id }}
</p>
16 <div>{{ note.content|linebreaksbr|markdownify }}
</div>
17 <p>Link:
<a href=
"{{ note.get_absolute_url }}">View
</a></p>
18 <p>Date: {{ note.created_at|date:
"Y-m-d H:i" }}
</p>
23 <p>Number of notes: {{ notes_count }}
</p>