caisse-bliss/app/Resources/views/base.html.twig

24 lines
605 B
Twig
Raw Normal View History

2018-04-04 16:25:25 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>{% block title %}Welcome!{% endblock %}</title>
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('build/app.css') }}">
{% endblock %}
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}"/>
</head>
<body>
{% block bigMain %}
<div class="container body-block">
{% block navigation %}{% endblock %}
{% block body %}{% endblock %}
</div>
{% endblock %}
{% block javascripts %}
<script src="{{ asset('build/app.js') }}"></script>
{% endblock %}
</body>
</html>