mirror of
https://github.com/resources-manager/resources-manager-webui.git
synced 2024-11-01 04:10:36 +01:00
14 lines
394 B
Twig
14 lines
394 B
Twig
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{% block title %}Welcome!{% endblock %}</title>
|
|
{% block stylesheets %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
<header>{% block header %}<h1>Resources booking manager</h1>{% endblock %}</header>
|
|
{% block body %}{% endblock %}
|
|
{% block javascripts %}{% endblock %}
|
|
</body>
|
|
</html>
|