{% extends "base" %}
{% block body %}
{{ parent() }}
{% endblock %}
{% block content_wrapper %}
{% block content %}{% endblock %}
{% include "notes/links" with { links: page.links } %}
{% include "notes/related" with {
notes: data.notes,
related: page.related,
} %}
{% include "notes/tags" with { tags: page.tags } %}
{% endblock %}