]> git.p6c8.net - pcdenotes.git/blobdiff - notes/templates/note_detail.html
Modified templates
[pcdenotes.git] / notes / templates / note_detail.html
index 086295606274241bf60a4154b2abcd8810591e42..b097c554d625c215736a0b09f05d140124d182bb 100644 (file)
@@ -1,19 +1,8 @@
+{% 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 %}Notes - {{ note.title }}{% endblock %}
 
-  <h1>{{ note.title }}</h1>
-
-  <div>{{ note.content|linebreaksbr|markdownify }}</div>
-  
-  <p>Date: {{ note.created_at|date:"Y-m-d H:i" }}</p>
-
-</body>
-</html>
+{% block content %}
+{% include "note.html" %}
+{% endblock %}
\ No newline at end of file

patrick-canterino.de