You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.5 KiB
49 lines
1.5 KiB
<!DOCTYPE html> |
|
<html lang="fr"> |
|
|
|
<head> |
|
<!-- Required meta tags --> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> |
|
<title>{% block title %}Welcome!{% endblock %}</title> |
|
<link rel="shortcut icon" href="{{ asset('build/images/favicon.ico') }}"> |
|
{% block stylesheets %} |
|
{# 'app' must match the first argument to addEntry() in webpack.config.js #} |
|
{{ encore_entry_link_tags('app') }} |
|
|
|
<!-- Renders a link tag (if your module requires any CSS) |
|
<link rel="stylesheet" href="/build/app.css"> --> |
|
{% endblock %} |
|
</head> |
|
|
|
<body> |
|
<!-- header area --> |
|
{% block header %} |
|
<header> |
|
<!-- navbar area --> |
|
{% include('include/header.html.twig') %} |
|
<!-- /navbar area --> |
|
</header> |
|
{% endblock %} |
|
<!-- /header area --> |
|
|
|
<!-- body area --> |
|
{% block body %} |
|
{% endblock %} |
|
<!-- body area --> |
|
|
|
<!-- footer area --> |
|
{% block footer %} |
|
{% include('include/footer.html.twig') %} |
|
{% endblock %} |
|
<!-- ./footer area --> |
|
{% block javascripts %} |
|
{{ encore_entry_script_tags('app') }} |
|
|
|
<!-- Renders app.js & a webpack runtime.js file |
|
<script src="/build/runtime.js"></script> |
|
<script src="/build/app.js"></script> --> |
|
{% endblock %} |
|
</body> |
|
|
|
</html> |