sculpin-talk-demo/source/_layouts/default.html.twig

13 lines
244 B
Twig
Raw Permalink Normal View History

2021-09-07 11:57:39 +00:00
{% extends 'app' %}
{% block body %}
2021-09-07 20:07:06 +00:00
{% include 'navbar' with {
links: site.main_menu,
} only %}
2021-09-07 12:01:41 +00:00
2021-09-07 12:03:31 +00:00
<h1>{{ page.title }}</h1>
2021-09-07 11:57:39 +00:00
{% block content %}{% endblock %}
2021-09-07 12:19:02 +00:00
{% block content_bottom %}{% endblock %}
2021-09-07 11:57:39 +00:00
{% endblock %}