+{% 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