40 lines
1.8 KiB
Twig
Executable File
40 lines
1.8 KiB
Twig
Executable File
<!doctype html>
|
|
<html lang="{{ app.request.locale }}" dir="{{ app.request.locale == 'ar' ? 'rtl' : 'ltr' }}">
|
|
<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 %}{% endblock %}</title>
|
|
<!-- Favicon -->
|
|
<link rel="shortcut icon" href="{{ asset('assets/images/favicon.ico') }}" />
|
|
|
|
<!-- vendor css -->
|
|
<link href="{{ asset('assets/lib/fontawesome-free/css/all.min.css') }}" rel="stylesheet">
|
|
<link href="{{ asset('assets/lib/ionicons/css/ionicons.min.css') }}" rel="stylesheet">
|
|
<link href="{{ asset('assets/lib/typicons.font/typicons.css') }}" rel="stylesheet">
|
|
<link href="{{ asset('assets/lib/flag-icon-css/css/flag-icon.min.css') }}" rel="stylesheet">
|
|
|
|
<!-- azia CSS -->
|
|
<link rel="stylesheet" href="{{ asset('assets/css/azia.css') }}">
|
|
|
|
<!-- az-footer -->
|
|
<script src="{{ asset('assets/lib/jquery/jquery.min.js') }}"></script>
|
|
<script src="{{ asset('assets/lib/bootstrap/js/bootstrap.bundle.min.js') }}"></script>
|
|
<script src="{{ asset('assets/lib/ionicons/ionicons.js') }}"></script>
|
|
<script src="{{ asset('assets/lib/jquery.flot/jquery.flot.js') }}"></script>
|
|
<script src="{{ asset('assets/lib/jquery.flot/jquery.flot.resize.js') }}"></script>
|
|
<script src="{{ asset('assets/lib/peity/jquery.peity.min.js') }}"></script>
|
|
<script src="{{ asset('assets/js/azia.js') }}"></script>
|
|
|
|
</head>
|
|
{% block body %}
|
|
<body>
|
|
|
|
{% include 'basic/menu.html.twig' %}
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</body>
|
|
{% endblock %}
|
|
</html>
|