You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
resources-manager-webui/templates/base.html.twig

23 lines
744 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></nav>
{% block overcontent %}
<section id="main">
{% block content %}{% endblock %}
</section>
{% endblock %}
<footer></footer>
{% block javascripts %}{% endblock %}
</body>
</html>