presentations/taking-flight-with-tailwind-css/demo/phpnw/source/_layouts/default.html.twig

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
244 B
Twig
Raw Normal View History

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