<!DOCTYPE html>
<html>
{% import _self as macros %}
{% macro manifest(scope) %}
<link rel='apple-touch-icon' sizes='180x180' href='/manifest/apple-touch-icon.png'>
<link rel='icon' type='image/png' sizes='32x32' href='/manifest/favicon-32x32.png'>
<link rel='icon' type='image/png' sizes='16x16' href='/manifest/favicon-16x16.png'>
<link rel='manifest' href='/manifest/site.webmanifest'>
<link rel='mask-icon' href='/manifest/safari-pinned-tab.svg' color='#f5b233'>
<link rel="manifest" href="/manifest/site.webmanifest">
<meta name='apple-mobile-web-app-title' content='UNIQOM'>
<meta name='application-name' content='UNIQOM'>
<meta name='msapplication-TileColor' content='#ffffff'>
<meta name='theme-color' content='#ba3631'>
{% endmacro %}
<head>
<meta charset="UTF-8">
<title>{% block title %}Welcome!{% endblock %}</title>
{#
Run `composer require symfony/webpack-encore-bundle`
and uncomment the following Encore helpers to start using Symfony UX
#}
{{ macros.manifest(_context) }}
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
<meta name="viewport" content="width=device-width, initial-scale=1">
{% endblock %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</head>
<body class="ea-content-width-full">
{% block body %}{% endblock %}
</body>
</html>