95 lines
2.3 KiB
HTML
Executable File
95 lines
2.3 KiB
HTML
Executable File
[staticMenu]
|
|
code = "top-menu"
|
|
|
|
[session]
|
|
|
|
[localePicker]
|
|
forceUrl = 1
|
|
==
|
|
<?php
|
|
function onStart(){
|
|
|
|
$this['nurgulToken'] = Session::get('nurgulToken');
|
|
$this['user_name'] = Session::get('name');
|
|
$this['user_phone'] = Session::get('phone');
|
|
|
|
}
|
|
?>
|
|
==
|
|
<!doctype html>
|
|
<html class="no-js" lang="{{activeLocale}}">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
<title>Nurgul - {{this.page.title}}</title>
|
|
<meta name="robots" content="noindex, follow" />
|
|
<meta name="description" content="">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<!-- Place favicon.png in the root directory -->
|
|
<link rel="shortcut icon" href="https://nurgul.com.tm/app/vendor/webkul/ui/assets/images/favicon.ico" type="image/x-icon" />
|
|
<!-- Font Icons css -->
|
|
<link rel="stylesheet" href="{{'assets/css/font-icons.css'|theme}}">
|
|
<!-- plugins css -->
|
|
<link rel="stylesheet" href="{{'assets/css/plugins.css'|theme}}">
|
|
<!-- Main Stylesheet -->
|
|
<link rel="stylesheet" href="{{'assets/css/style.css'|theme}}">
|
|
<!-- Responsive css -->
|
|
<link rel="stylesheet" href="{{'assets/css/responsive.css'|theme}}">
|
|
|
|
{% styles %}
|
|
</head>
|
|
|
|
<body>
|
|
{% flash %}
|
|
<p data-control="flash-message" class="flash-message fade {{ type }}" data-interval="5">
|
|
{{ message }}
|
|
</p>
|
|
{% endflash %}
|
|
<!-- Body main wrapper start -->
|
|
<div class="body-wrapper">
|
|
|
|
{% partial 'header' %}
|
|
|
|
{% partial 'cart' %}
|
|
|
|
{% partial 'mobile-menu' %}
|
|
|
|
{% partial 'overlay' %}
|
|
|
|
{% page %}
|
|
|
|
{% partial 'footer' %}
|
|
|
|
{% partial 'modals' %}
|
|
|
|
</div>
|
|
<!-- Body main wrapper end -->
|
|
|
|
<!-- preloader area start -->
|
|
<div class="preloader d-none" id="preloader">
|
|
<div class="preloader-inner">
|
|
<div class="spinner">
|
|
<div class="dot1"></div>
|
|
<div class="dot2"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- preloader area end -->
|
|
|
|
<!-- All JS Plugins -->
|
|
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script> -->
|
|
<script src="{{'assets/js/plugins.js'|theme}}"></script>
|
|
<!-- Main JS -->
|
|
<script src="{{'assets/js/main.js'|theme}}"></script>
|
|
|
|
|
|
{% framework extras %}
|
|
|
|
{% scripts %}
|
|
|
|
|
|
</body>
|
|
|
|
</html> |