21 lines
677 B
Twig
21 lines
677 B
Twig
<!DOCTYPE html>
|
|
<html lang="{{ app.request.locale }}" dir="{{ app.request.locale == 'fa' ? 'rtl' : 'ltr' }}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}{{ 'common.brand_name'|trans }}{% endblock %}</title>
|
|
<link rel="icon" href="{{asset('favicon.ico')}}">
|
|
|
|
{% block stylesheets %}
|
|
{{ encore_entry_link_tags('main') }}
|
|
{% endblock %}
|
|
|
|
{% block javascripts %}
|
|
{{ encore_entry_script_tags('main') }}
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
{% block body %}{% endblock %}
|
|
</body>
|
|
</html>
|