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

36 lines
1.2 KiB
Twig
Executable File

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<base href="/">
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<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"/>#}
<link rel="stylesheet" href="styles.css" crossorigin="anonymous">
<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 %} #}
</head>
<body>
{% include 'split/header.html.twig' %}
{% block outerBody %}
<div class="container">
{% block body %}
coucou!
{% 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>