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

36 lines
1.2 KiB
Twig
Raw Normal View History

2020-01-22 12:17:49 +01:00
<!DOCTYPE html>
<html lang="fr">
2020-01-22 12:17:49 +01:00
<head>
<meta charset="UTF-8">
2021-02-12 15:53:28 +01:00
<base href="/">
<meta content="width=device-width, initial-scale=1" name="viewport"/>
2021-05-21 10:52:34 +02:00
<link href="img/logo.png" rel="icon" type="image/png"/>
{# <link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500&display=swap" rel="stylesheet"/>#}
{# <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"/>#}
2021-02-12 15:53:28 +01:00
<link rel="stylesheet" href="styles.css" crossorigin="anonymous">
2021-05-21 09:33:31 +02:00
<title>{% block title %}{{ WEBSITE_NAME }}{% endblock %}</title>
{# {% 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">
2021-02-12 15:53:28 +01:00
{% block body %}
2021-05-21 10:52:34 +02:00
coucou!
2021-02-12 15:53:28 +01:00
{% endblock %}
2020-10-26 11:39:04 +01:00
</div>
{% endblock %}
{% include 'split/footer.html.twig' %}
2021-02-12 15:53:28 +01:00
{# {% 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>