gurl_o/themes/gurlushyk/layouts/default.htm

96 lines
2.9 KiB
HTML
Raw Normal View History

2023-10-03 12:00:10 +00:00
[localePicker]
2023-10-25 16:09:40 +00:00
forceUrl = 1
2023-10-12 20:59:00 +00:00
[staticMenu]
code = "top-menu"
2023-10-22 13:08:31 +00:00
[SeoCmsPage]
2023-10-25 16:09:40 +00:00
[session]
security = "all"
redirect = "login"
2023-11-09 10:04:25 +00:00
[shopsettings]
2023-07-23 05:57:06 +00:00
==
2023-10-25 16:09:40 +00:00
<html lang="{{activeLocale}}">
2023-07-23 05:57:06 +00:00
2023-10-03 12:00:10 +00:00
<head>
2023-10-22 13:08:31 +00:00
{% component 'SeoCmsPage' %}
2023-07-23 05:57:06 +00:00
<meta charset="UTF-8">
2023-10-25 16:09:40 +00:00
2023-07-23 05:57:06 +00:00
<meta http-equiv="X-UA-Compatible" content="IE=edge">
2023-10-03 12:00:10 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>{{ this.page.title }}</title>
<link rel="icon" href="{{ 'assets/img/core-img/favicon.png'|theme}}">
<link rel="stylesheet" href="{{ 'assets/css/style.css'|theme}}">
2023-10-12 20:59:00 +00:00
<link rel="stylesheet" href="{{ 'assets/css/newcss.css'|theme}}">
<link rel="stylesheet" href="{{ 'assets/css/toastr.min.css'|theme}}">
{% partial "customStyle" %}
2023-07-23 05:57:06 +00:00
2023-10-03 12:28:58 +00:00
{% styles %}
2023-07-23 05:57:06 +00:00
</head>
2023-10-03 12:00:10 +00:00
<body>
2023-10-22 13:08:31 +00:00
{% flash %}
<p data-control="flash-message" class="flash-message fade {{ type }}" data-interval="5">
{{ message }}
</p>
{% endflash %}
2023-10-03 12:00:10 +00:00
<!-- Preloader -->
2023-10-03 12:20:59 +00:00
<!-- <div id="preloader">
2023-10-03 12:00:10 +00:00
<div class="spinner-grow" role="status">
<span class="sr-only">Ýüklenýär...</span>
</div>
2023-10-03 12:20:59 +00:00
</div> -->
2023-07-23 05:57:06 +00:00
2023-10-03 12:00:10 +00:00
{% partial 'header' %}
2023-07-23 05:57:06 +00:00
2023-10-03 12:00:10 +00:00
{% page %}
2023-07-23 05:57:06 +00:00
2023-10-03 12:00:10 +00:00
{% partial 'footer' %}
2023-07-23 05:57:06 +00:00
2023-10-03 12:00:10 +00:00
<script src="{{ 'assets/js/jquery.min.js'|theme }}"></script>
<script src="{{ 'assets/js/popper.min.js'|theme }}"></script>
<script src="{{ 'assets/js/bootstrap.min.js'|theme }}"></script>
<script src="{{ 'assets/js/jquery.easing.min.js'|theme }}"></script>
<script src="{{ 'assets/js/default/classy-nav.min.js'|theme }}"></script>
<script src="{{ 'assets/js/owl.carousel.min.js'|theme }}"></script>
<script src="{{ 'assets/js/default/scrollup.js'|theme }}"></script>
<script src="{{ 'assets/js/waypoints.min.js'|theme }}"></script>
<script src="{{ 'assets/js/jquery.countdown.min.js'|theme }}"></script>
<script src="{{ 'assets/js/jquery.counterup.min.js'|theme }}"></script>
<script src="{{ 'assets/js/jquery-ui.min.js'|theme }}"></script>
<script src="{{ 'assets/js/jarallax.min.js'|theme }}"></script>
<script src="{{ 'assets/js/jarallax-video.min.js'|theme }}"></script>
<script src="{{ 'assets/js/jquery.magnific-popup.min.js'|theme }}"></script>
<script src="{{ 'assets/js/wow.min.js'|theme }}"></script>
<script src="{{ 'assets/js/default/active.js'|theme }}"></script>
2023-10-12 20:59:00 +00:00
<script src="{{ 'assets/js/toastr.min.js'|theme }}"></script>
<script src="{{ 'assets/js/toastr.scripts.js'|theme }}"></script>
2023-10-22 13:08:31 +00:00
<script src="{{ 'assets/js/inputmask.js'|theme }}"></script>
2023-10-12 20:59:00 +00:00
<script src="{{ 'assets/js/script.js'|theme }}"></script>
<script>
2023-07-23 05:57:06 +00:00
2023-10-12 20:59:00 +00:00
$(document).ready(function(){
$('.owl-carousel').owlCarousel({
loop: false,
rewind: true,
autoplay:true,
autoplayTimeout:1000,
})
});
</script>
2023-10-25 16:09:40 +00:00
2023-10-03 12:00:10 +00:00
{% framework extras %}
2023-10-12 20:59:00 +00:00
2023-10-03 12:00:10 +00:00
{% scripts %}
2023-07-23 05:57:06 +00:00
</body>
2023-10-12 20:59:00 +00:00
</html>