13 lines
226 B
HTML
13 lines
226 B
HTML
{% extends "base.html" %} {% block title %}Notes{% endblock %} {% block content
|
|
%}
|
|
<nav>
|
|
<small>
|
|
<a href="/"><~ back</a>
|
|
</small>
|
|
</nav>
|
|
<hr />
|
|
|
|
<h1>Notes</h1>
|
|
<p>Here all my notes go</p>
|
|
{% endblock content%}
|