1
0
mirror of https://framagit.org/tykayn/date-poll-api synced 2023-08-25 08:23:11 +02:00
date-poll-api/templates/base.html.twig
2020-10-26 11:39:04 +01:00

28 lines
695 B
Twig
Executable File

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Framdate{% endblock %}</title>
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('build/vendors~app.css') }}">
<link rel="stylesheet" href="{{ asset('build/app.css') }}">
{% endblock %}
</head>
<body>
{% 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 %}
</body>
</html>