2021-12-28 19:16:56 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
2021-12-28 21:05:28 +01:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2021-12-29 01:33:48 +01:00
|
|
|
<title>{% block title %}IceCold!{% endblock %}</title>
|
2021-12-28 21:05:28 +01:00
|
|
|
<link rel="icon"
|
|
|
|
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
|
|
|
|
{# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #}
|
|
|
|
{% block stylesheets %}
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
|
|
|
|
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
|
|
|
|
crossorigin="anonymous">
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.2/font/bootstrap-icons.css">
|
2021-12-29 02:00:02 +01:00
|
|
|
{# {{ encore_entry_link_tags('app') }}#}
|
2021-12-28 21:05:28 +01:00
|
|
|
{% endblock %}
|
|
|
|
</head>
|
|
|
|
<body>
|
2021-12-29 01:03:08 +01:00
|
|
|
{% include 'base/navbar.html.twig' %}
|
2021-12-29 01:33:48 +01:00
|
|
|
<main style="padding-top: 64px;">
|
2021-12-29 02:00:02 +01:00
|
|
|
<div class="container">
|
|
|
|
{% block body %}
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
2021-12-28 21:05:28 +01:00
|
|
|
</main>
|
2021-12-28 19:16:56 +01:00
|
|
|
|
2021-12-28 21:05:28 +01:00
|
|
|
{% block javascripts %}
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
|
|
|
|
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
|
|
|
|
crossorigin="anonymous"></script>
|
2022-01-02 18:56:28 +01:00
|
|
|
<script
|
|
|
|
src="https://code.jquery.com/jquery-3.6.0.slim.min.js"
|
|
|
|
integrity="sha256-u7e5khyithlIdTpu22PHhENmPcRdFiHRjhAuHcs05RI="
|
|
|
|
crossorigin="anonymous"></script>
|
2021-12-29 02:00:02 +01:00
|
|
|
{# {{ encore_entry_script_tags('app') }}#}
|
2021-12-28 21:05:28 +01:00
|
|
|
{% endblock %}
|
|
|
|
</body>
|
2021-12-28 19:16:56 +01:00
|
|
|
</html>
|