10 lines
202 B
HTML
10 lines
202 B
HTML
{% extends "notes/base.html" %}
|
|
|
|
{% block title %}{{ title }}{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>{{ title }}</h1>
|
|
{% include "notes/messages.html" %}
|
|
{% include "notes/notes.html" %}
|
|
{% endblock %}
|