26 lines
470 B
Twig
26 lines
470 B
Twig
{% extends "base" %}
|
|
|
|
{% block body %}
|
|
<nav>
|
|
<a href="/">Home</a>
|
|
</nav>
|
|
|
|
{{ parent() }}
|
|
{% endblock %}
|
|
|
|
{% block content_wrapper %}
|
|
<time date="{{ page.date|date('c') }}">{{ page.date|date }}</time>
|
|
|
|
{% 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 %}
|