hesabix/core/templates/base.html.twig

21 lines
677 B
Twig
Raw Normal View History

2025-08-31 15:07:34 +03:30
<!DOCTYPE html>
2025-09-01 20:51:04 +03:30
<html lang="{{ app.request.locale }}" dir="{{ app.request.locale == 'fa' ? 'rtl' : 'ltr' }}">
2025-08-31 15:07:34 +03:30
<head>
<meta charset="UTF-8">
2025-08-31 19:48:07 +03:30
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2025-09-01 20:51:04 +03:30
<title>{% block title %}{{ 'common.brand_name'|trans }}{% endblock %}</title>
<link rel="icon" href="{{asset('favicon.ico')}}">
2025-08-31 19:48:07 +03:30
2025-08-31 15:07:34 +03:30
{% block stylesheets %}
2025-09-01 20:51:04 +03:30
{{ encore_entry_link_tags('main') }}
2025-08-31 15:07:34 +03:30
{% endblock %}
{% block javascripts %}
2025-09-01 20:51:04 +03:30
{{ encore_entry_script_tags('main') }}
2025-08-31 15:07:34 +03:30
{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>