]> git.p6c8.net - pcdenotes.git/blob - notes/templates/note_detail.html
086295606274241bf60a4154b2abcd8810591e42
[pcdenotes.git] / notes / templates / note_detail.html
1 {% load markdownify %}
2 <!DOCTYPE html>
3
4 <html lang="de">
5 <head>
6 <title>{{ note.title }}</title>
7 <meta charset="UTF-8" />
8 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
9 </head>
10 <body>
11
12 <h1>{{ note.title }}</h1>
13
14 <div>{{ note.content|linebreaksbr|markdownify }}</div>
15
16 <p>Date: {{ note.created_at|date:"Y-m-d H:i" }}</p>
17
18 </body>
19 </html>

patrick-canterino.de