You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
855 B
37 lines
855 B
<!DOCTYPE html> |
|
<html lang="en" data-theme="{{ app.session.get('theme', 'dark') }}"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>{% block title %}Newsroom{% endblock %}</title> |
|
<meta name="description" content="Decentralised Newsroom - the future of journalism"> |
|
{% block stylesheets %} |
|
{% endblock %} |
|
{% block javascripts %} |
|
{% block importmap %}{{ importmap('app') }}{% endblock %} |
|
{% endblock %} |
|
</head> |
|
<body> |
|
<header> |
|
<twig:Header /> |
|
</header> |
|
|
|
<div class="layout"> |
|
<nav> |
|
<twig:UserMenu /> |
|
{% block nav %}{% endblock %} |
|
</nav> |
|
<main> |
|
{% block body %}{% endblock %} |
|
</main> |
|
<aside> |
|
{% block aside %}{% endblock %} |
|
</aside> |
|
</div> |
|
|
|
<footer> |
|
<twig:Footer /> |
|
</footer> |
|
|
|
</body> |
|
</html>
|
|
|