2017-04-14 15:58:09 +02:00
|
|
|
<!doctype html>
|
2022-09-06 13:44:41 +02:00
|
|
|
<html class="h-100">
|
2017-04-14 15:58:09 +02:00
|
|
|
<head>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
2022-06-16 14:59:43 +02:00
|
|
|
<title>{{ "title" | trans }} :: {% block title %}{% endblock %}</title>
|
2021-04-08 16:34:25 +02:00
|
|
|
|
2021-05-26 13:09:13 +02:00
|
|
|
{% block styles %}{% endblock %}
|
2021-04-08 16:34:25 +02:00
|
|
|
|
2021-05-26 13:09:13 +02:00
|
|
|
{% block scripts %}{% endblock %}
|
2021-04-12 12:23:50 +02:00
|
|
|
|
2017-04-14 15:58:09 +02:00
|
|
|
</head>
|
|
|
|
|
2022-09-06 13:44:41 +02:00
|
|
|
<body class="d-flex flex-column h-100">
|
|
|
|
<main class="flex-shrink-0 container-fluid">
|
2021-04-08 16:34:25 +02:00
|
|
|
<div class="row py-3">
|
2021-05-21 13:09:48 +02:00
|
|
|
<div class="col-12">
|
2021-04-08 16:34:25 +02:00
|
|
|
<div class="page-header">
|
2022-06-16 15:09:41 +02:00
|
|
|
<h1>{{ "header" | trans }}</h1>
|
2017-04-14 15:58:09 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-04-08 16:34:25 +02:00
|
|
|
<div class="row py-3">
|
2022-01-06 15:56:50 +01:00
|
|
|
<div class="col-12 col-xxl-2">
|
2021-04-08 16:34:25 +02:00
|
|
|
<ul class="nav flex-column">
|
2022-05-24 18:09:14 +02:00
|
|
|
<li class="nav-item"><a class="nav-link" href="{{ path('job_index') }}">{{ 'menu.overview' | trans }}</a></li>
|
|
|
|
<li class="nav-item"><a class="nav-link" href="{{ path('job_add') }}">{{ 'menu.add' | trans }}</a></li>
|
2022-09-08 12:28:38 +02:00
|
|
|
<li class="nav-item"><a class="nav-link" href="{{ path('settings') }}">{{ 'menu.settings' | trans }}</a></li>
|
2022-05-24 18:09:14 +02:00
|
|
|
<li class="nav-item"><a class="nav-link" href="{{ path('logout') }}">{{ 'menu.logout' | trans }}</a></li>
|
2021-04-08 16:34:25 +02:00
|
|
|
</ul>
|
|
|
|
</div>
|
2022-01-06 15:56:50 +01:00
|
|
|
<div class="col-12 col-xxl-10">
|
2021-04-13 14:07:11 +02:00
|
|
|
{{ include('flashes.html.twig') }}
|
2021-04-08 16:34:25 +02:00
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-09-06 13:44:41 +02:00
|
|
|
</main>
|
2021-07-30 14:35:47 +02:00
|
|
|
|
|
|
|
{% block extrahtml %}{% endblock %}
|
2022-09-06 13:44:41 +02:00
|
|
|
{{ include('footer.html.twig') }}
|
2017-04-14 15:58:09 +02:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|