mirror of
https://codeberg.org/danielsiepmann/news-reader-php.git
synced 2024-11-22 12:16:09 +01:00
Daniel Siepmann
bed87f8a10
Don't have left sidebar. Add small sidebar to the right of each entry to interact with each entry.
25 lines
718 B
Twig
25 lines
718 B
Twig
<!DOCTYPE html>
|
|
<html lang="en-US">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{% block title %}{{ app_name }}{% endblock %}</title>
|
|
{% block stylesheets %}
|
|
<link href="{{ asset('css/style.css') }}" rel="stylesheet">
|
|
{% endblock %}
|
|
</head>
|
|
<body id="layout-{% block layout %}default{% endblock %}">
|
|
<header>
|
|
<h1><a href="{{ path('start') }}">{{ app_name }}</a></h1>
|
|
</header>
|
|
|
|
<main>
|
|
{% block body %}{% endblock %}
|
|
</main>
|
|
|
|
<footer>
|
|
© by <a href="https://daniel-siepmann.de">Daniel Siepmann</a> since 2020
|
|
</footer>
|
|
|
|
{% block javascripts %}{% endblock %}
|
|
</body>
|
|
</html>
|