add main routes and templates

This commit is contained in:
Tykayn 2025-02-09 16:10:35 +01:00 committed by tykayn
parent 6df4488b5c
commit 71bce538af
56 changed files with 2288 additions and 24 deletions

33
templates/base.html.twig Normal file → Executable file
View file

@ -1,17 +1,38 @@
{% trans_default_domain 'messages' %}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
<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><text y=%221.3em%22 x=%220.2em%22 font-size=%2276%22 fill=%22%23fff%22>sf</text></svg>">
<meta name="google-signin-client_id"
content="938689189350-frtrg93bnva4b3p7c1al880mi3ts5i35.apps.googleusercontent.com">
<title>{% block title %} {% trans %}menu.title{% endtrans %} - Fiche de compte dynamique{% endblock %}</title>
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
{% endblock %}
{% block javascripts %}
{% block importmap %}{{ importmap('app') }}{% endblock %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
</body>
<body>
{% block navigation %}
{% endblock %}
<div id="bodyland">
{% block bigMain %}
{% include 'default/header.html.twig' %}
<div class="container">
<div class="row">
<div class="col col-xs-12 col-sm-9 col-sm-offset-3 col-md-9 col-md-offset-3 col-lg-offset-3">
{% block body %}
{% endblock %}
</div>
</div>
</div>
{% include 'default/footer.html.twig' %}
{% endblock %}
</div>
</body>
</html>