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

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>