hesabix/core/templates/base.html.twig

21 lines
807 B
Twig
Raw Normal View History

2025-08-31 15:07:34 +03:30
<!DOCTYPE html>
2025-08-31 19:48:07 +03:30
<html lang="fa" dir="rtl">
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">
<title>{% block title %}سیستم حسابداری{% endblock %}</title>
2025-08-31 15:07:34 +03:30
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text><text y=%221.3em%22 x=%220.2em%22 font-size=%2276%22 fill=%22%23fff%22>sf</text></svg>">
2025-08-31 19:48:07 +03:30
2025-08-31 15:07:34 +03:30
{% block stylesheets %}
2025-08-31 19:48:07 +03:30
{{ encore_entry_link_tags('app') }}
2025-08-31 15:07:34 +03:30
{% endblock %}
{% block javascripts %}
2025-08-31 19:48:07 +03:30
{{ encore_entry_script_tags('app') }}
2025-08-31 15:07:34 +03:30
{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>