{% extends "base.html" %} {% block title %}{{ note.title }} — PKM{% endblock %} {% block content %}

{{ note.title }}

All notes
ID: {{ note.id }} Created: {{ note.created }} Updated: {{ note.updated }} {% if note.status %}{{ note.status }}{% endif %} {% if note.tags %} Tags:
{% for t in note.tags %} {{ t }} {% endfor %}
{% endif %}

Body (raw Markdown)

{{ note.body }}

Quick edit

File: {{ note.rel_path }}
Slug: {{ note.slug }}
{% endblock %}