date-poll-api/templates/base.html.twig

28 lines
695 B
Twig
Raw Normal View History

2020-01-22 12:17:49 +01:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
2020-04-10 17:19:18 +02:00
<title>{% block title %}Framdate{% endblock %}</title>
2020-10-26 11:39:04 +01:00
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('build/vendors~app.css') }}">
<link rel="stylesheet" href="{{ asset('build/app.css') }}">
{% endblock %}
2020-01-22 12:17:49 +01:00
</head>
<body>
2020-10-26 11:39:04 +01:00
{% include 'split/header.html.twig' %}
{% block outerBody %}
<div class="container">
{% block body %}{% endblock %}
</div>
{% endblock %}
{% include 'split/footer.html.twig' %}
{% block javascripts %}
<script href="{{ asset('build/vendors~app.js') }}"></script>
<script href="{{ asset('build/app.js') }}"></script>
{% endblock %}
2020-01-22 12:17:49 +01:00
</body>
</html>