1 {% extends
"note_base.html" %}
4 {% block title %}Notes{% endblock %}
7 {% for note in notes_page %}
8 <article class=
"container mt-5">
9 <h2><a href=
"{{ note.get_absolute_url }}" class=
"link-dark">{{ note.title }}
</a></h2>
10 <div>{{ note.content|linebreaksbr|markdownify }}
</div>
11 <p>Date: {{ note.created_at|date:
"Y-m-d H:i" }}
</p>
17 <ul class=
"pagination">
18 {% for page in pages %}
19 {% ifnotequal page.number page_number %}
20 <li class=
"page-item"><a href=
"?page={{ page.number }}" class=
"page-link">{{ page.number }}
</a></li>
22 <li class=
"page-item active"><span class=
"page-link">{{ page.number }}
</span></li>