news-reader-php/templates/base.html.twig

36 lines
1,023 B
Twig
Raw Permalink Normal View History

2020-05-25 22:47:09 +02:00
<!DOCTYPE html>
<html lang="en-US">
2020-05-25 22:47:09 +02:00
<head>
<meta charset="UTF-8">
<title>{% block title %}{{ app_name }}{% endblock %}</title>
2020-05-25 23:32:57 +02:00
{% block stylesheets %}
<link href="{{ asset('css/style.css') }}" rel="stylesheet">
{% endblock %}
2020-05-25 22:47:09 +02:00
</head>
<body id="layout-{% block layout %}default{% endblock %}">
2020-05-25 23:32:57 +02:00
<header>
<h1><a href="{{ path('start') }}">{{ app_name }}</a></h1>
</header>
<aside>
{% for label, messages in app.flashes %}
<ul class="{{ label }}">
{% for message in messages %}
<li>{{ message }}</li>
{% endfor %}
</ul>
{% endfor %}
</aside>
2020-05-26 12:56:15 +02:00
<main>
{% block body %}{% endblock %}
2020-05-26 12:56:15 +02:00
</main>
2020-05-25 23:32:57 +02:00
<footer>
© by <a href="https://daniel-siepmann.de">Daniel Siepmann</a> since 2020
</footer>
2020-05-25 22:47:09 +02:00
{% block javascripts %}{% endblock %}
</body>
</html>