15 lines
367 B
HTML
15 lines
367 B
HTML
{% extends "base.html" %}
|
|
{% from "macros/title.html" import title_tag with context %}
|
|
{% from "macros/nl.html" import nl_list with context %}
|
|
|
|
{% block title %}{{ title_tag('Notes by date') }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<main>
|
|
<h1 id="firstHeading">Notes by date</h1>
|
|
|
|
<div class="inner-content">
|
|
{{ nl_list(notes) }}
|
|
</div>
|
|
</main>
|
|
{% endblock %}
|