{% extends "note_base.html" %}
{% load markdownify %}
-{% block title %}{{ note.title }}{% endblock %}
+{% block title %}{{ note.title }} – Notes{% 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>
+{% include "note.html" %}
{% endblock %}
\ No newline at end of file