]> git.p6c8.net - pcdenotes.git/blob - notes/templates/note_base.html
Use template inheritance
[pcdenotes.git] / notes / templates / note_base.html
1 {% load markdownify %}
2 <!DOCTYPE html>
3
4 <html lang="en">
5 <head>
6 <title>{% block title %}{% endblock %}</title>
7 <meta charset="UTF-8" />
8 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
9 </head>
10 <body>
11
12 {% block content %}{% endblock %}
13 </body>
14 </html>

patrick-canterino.de