]> git.p6c8.net - pcdenotes.git/blobdiff - notes/templates/note_detail.html
Use template inheritance
[pcdenotes.git] / notes / templates / note_detail.html
index 086295606274241bf60a4154b2abcd8810591e42..1fdfae99d044468a6c2a2bca6610bad72ff6f975 100644 (file)
@@ -1,19 +1,12 @@
+{% extends "note_base.html" %}
 {% load markdownify %}
-<!DOCTYPE html>
 
-<html lang="de">
-<head>
-  <title>{{ note.title }}</title>
-  <meta charset="UTF-8" />
-  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
-</head>
-<body>
+{% block title %}{{ note.title }}{% endblock %}
 
+{% block content %}
   <h1>{{ note.title }}</h1>
 
   <div>{{ note.content|linebreaksbr|markdownify }}</div>
   
   <p>Date: {{ note.created_at|date:"Y-m-d H:i" }}</p>
-
-</body>
-</html>
+{% endblock %}
\ No newline at end of file

patrick-canterino.de