]> git.p6c8.net - pcdenotes.git/blobdiff - notes/templates/note_list.html
Use template inheritance
[pcdenotes.git] / notes / templates / note_list.html
index fb2da3323eeb119467cf1c05c1706a8440039364..9f1554c1f2446c77b9fe9e7461858a5aedf95de4 100644 (file)
@@ -1,14 +1,9 @@
+{% extends "note_base.html" %}
 {% load markdownify %}
-<!DOCTYPE html>
 
-<html lang="de">
-<head>
-  <title>Notes</title>
-  <meta charset="UTF-8" />
-  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-</head>
-<body>
+{% block title %}Notes{% endblock %}
 
+{% block content %}
     <h1>Notes</h1>
     {% for note in notes %}
     <h2>{{ note.title }}</h2>
@@ -21,6 +16,4 @@
     {% endfor %}
 
     <p>Number of notes: {{ notes_count }}</p>
-
-</body>
-</html>
+{% endblock %}
\ No newline at end of file

patrick-canterino.de