mirror of
https://github.com/resources-manager/resources-manager-webui.git
synced 2024-10-31 20:00:36 +01:00
23 lines
803 B
Twig
23 lines
803 B
Twig
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
<title>{% block title %}Resources manager{% endblock %}</title>
|
|
{% block stylesheets %}
|
|
<link href="{{ asset('/css/style.css') }}" type="text/css" rel="stylesheet" />
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
<header>{% block header %}<h1>Resources booking manager</h1>{% endblock %}</header>
|
|
<nav>{% block nav %}{% endblock %}</nav>
|
|
{% block overcontent %}
|
|
<section id="main">
|
|
{% block content %}{% include 'menu.html.twig' %}{% endblock %}
|
|
</section>
|
|
{% endblock %}
|
|
<footer></footer>
|
|
{% block javascripts %}{% endblock %}
|
|
</body>
|
|
</html>
|