Part-DB.Part-DB-server/templates/base.html.twig

25 lines
539 B
Twig
Raw Normal View History

2019-02-23 16:49:38 +01:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>{% block title %}Part-DB{% endblock %}</title>
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{% endblock %}
</head>
<body>
{% block body %}
<div class="container-fluid">
{% block content %}
{% endblock %}
</div>
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</body>
2019-02-23 16:49:38 +01:00
</html>