2022-08-28 19:50:26 +00:00
|
|
|
description = "Default layout"
|
|
|
|
|
|
|
|
|
|
[session]
|
|
|
|
|
security = "all"
|
2022-09-13 14:01:10 +00:00
|
|
|
|
|
|
|
|
[account]
|
|
|
|
|
paramCode = "code"
|
|
|
|
|
forceSecure = 0
|
|
|
|
|
requirePassword = 0
|
|
|
|
|
|
|
|
|
|
[localePicker]
|
|
|
|
|
forceUrl = 0
|
2022-08-28 19:50:26 +00:00
|
|
|
==
|
|
|
|
|
<?php
|
|
|
|
|
function onStart(){
|
|
|
|
|
|
|
|
|
|
$this['top_categories'] = Tps\Shops\Models\TopCategory::orderBy('sort_order')->limit(8)->get();
|
|
|
|
|
$this['category_settings'] = [
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
"limit" => 9,
|
|
|
|
|
"start" => 0,
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
"limit" => 5,
|
|
|
|
|
"start" => 1
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
"limit" => 5,
|
|
|
|
|
"start" => 2
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
"limit" => 6,
|
|
|
|
|
"start" => 3
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
"limit" => 5,
|
|
|
|
|
"start" => 4
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
"limit" => 9,
|
|
|
|
|
"start" => 5
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
[
|
|
|
|
|
"limit" => 5,
|
|
|
|
|
"start" => 6
|
|
|
|
|
],
|
|
|
|
|
[
|
|
|
|
|
"limit" => 3,
|
|
|
|
|
"start" => 7
|
|
|
|
|
],
|
|
|
|
|
],
|
|
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
?>
|
|
|
|
|
==
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
|
|
|
|
|
<meta name="description" content="{{ this.page.meta_description }}">
|
2022-08-29 21:15:58 +00:00
|
|
|
<meta name="title" content="{{ this.page.meta_title | default(this.theme.site)}}">
|
2022-08-28 19:50:26 +00:00
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
|
|
|
|
|
|
2022-08-29 21:15:58 +00:00
|
|
|
<title>Berkarar</title>
|
2022-08-28 19:50:26 +00:00
|
|
|
|
|
|
|
|
<link href="{{ 'assets/css/main.css'|theme }}" rel="stylesheet">
|
|
|
|
|
{% styles %}
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
|
|
<!-- Header ============================= -->
|
|
|
|
|
<headar class="header">{% partial 'site/header' %}</headar>
|
|
|
|
|
<!-- Header end ========================= -->
|
|
|
|
|
|
|
|
|
|
{% partial 'site/navigation' %}
|
|
|
|
|
|
|
|
|
|
{% page %}
|
|
|
|
|
|
|
|
|
|
{% partial 'site/footer' %}
|
2022-09-13 14:01:10 +00:00
|
|
|
{% partial 'site/login' %}
|
2022-08-28 19:50:26 +00:00
|
|
|
|
|
|
|
|
<script src="{{ 'assets/js/jquery.js'|theme }}"></script>
|
|
|
|
|
<script src="{{ 'assets/js/main.js'|theme }}"></script>
|
|
|
|
|
<script src="{{ 'assets/js/slick.min.js'|theme }}"></script>
|
|
|
|
|
<script src="{{ 'assets/js/slider.js'|theme }}"></script>
|
|
|
|
|
<script src="{{ 'assets/js/tabs.js'|theme }}"></script>
|
|
|
|
|
<script src="{{ 'assets/js/modal-close.js'|theme }}"></script>
|
|
|
|
|
|
|
|
|
|
{% framework extras %}
|
|
|
|
|
{% scripts %}
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
|
|
</html>
|