{% extends "note_base.html" %}
-{% load markdownify %}
-{% block title %}Notes - {{ note.title }}{% endblock %}
+{% block title %}{{ note.title }} – Notes{% endblock %}
{% block content %}
- <article class="container mt-5">
- <h2>{{ note.title }}</h2>
- {{ note.content|linebreaksbr|markdownify }}
- <p>Date: {{ note.created_at|date:"Y-m-d H:i" }}</p>
- </article>
+{% include "note.html" %}
{% endblock %}
\ No newline at end of file