|
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
- <title>{% block title %}Welcome!{% endblock %}</title>
-
- {% if block('meta_title') is defined %}
- {% set block_meta_title = block('meta_title') %}
- {% if block_meta_title is not empty %}
- <meta name="title" content="{{ block_meta_title|raw }}"/>
- {% endif %}
- {% endif %}
- {% if block('meta_description') is defined %}
- {% set block_meta_description = block('meta_description') %}
- {% if block_meta_description is not empty %}
- <meta name="description" content="{{ block_meta_description|raw }}"/>
- {% endif %}
- {% endif %}
-
- <meta property="og:title" content="{% block ogTitle %}{{ 'meta.title'|trans }}{% endblock %}"/>
- <meta property="og:type" content="{% block ogType %}website{% endblock %}"/>
- <meta property="og:image"
- content="{% block ogImage %}{{ asset('bundles/mwebcore/img/facebook-banner.jpg', null, true) }}{% endblock %}"/>
- <meta property="og:description" content="{% block ogDesciption %}{{ 'meta.description'|trans }}{% endblock %}"/>
- <meta property="og:url" content="{{ app.request.uri }}"/>
-
- <link rel="icon" type="image/png" href="{{ asset('assets/img/favicon.png') }}"/>
-
- {% block stylesheets %}
- {{ encore_entry_link_tags('tabler') }}
- {% endblock %}
- </head>
- <body>
- {% block body %}
- <body id="default">
- <header>
- <h1>Projet par défaut La clic !</h1>
- {% include "block/nav.html.twig" %}
- </header>
-
- <div class="container">
- {% block content %}
-
- {% endblock %}
-
- </div>
- <footer></footer>
-
- </body>
-
- {% endblock %}
-
- {% block javascripts %}
- {{ encore_entry_script_tags('tabler') }}
- {% endblock %}
- </body>
- </html>
|