48 lines
1.8 KiB
HTML
48 lines
1.8 KiB
HTML
description = "Default layout"
|
|
|
|
[localePicker]
|
|
forceUrl = 1
|
|
==
|
|
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="title" content="{{ this.page.meta_title | default(this.theme.site)}}">
|
|
<meta name="description" content="{{ this.page.meta_description }}">
|
|
<meta name="canonical" content="{{ this.page.meta_canonical }}">
|
|
<meta name="keywords" content="{{ this.page.meta_keywords }}">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap" rel="stylesheet">
|
|
|
|
<link rel="icon" type="image/png" href="{{ 'assets/images/favicon.png'|theme }}"/>
|
|
<link rel="shortcut icon" type="image/png" href="{{ 'assets/images/favicon.png'|theme }}"/>
|
|
|
|
<link rel="stylesheet" href="{{ ['assets/css/slick.css','assets/css/slick-theme.css',
|
|
'assets/css/lightpick.css', 'assets/css/jquery.fancybox.min.css','assets/css/main.css',
|
|
'assets/css/new.css']|theme }}">
|
|
|
|
{% styles %}
|
|
<title>{{ this.page.title | default(this.theme.site)}}</title>
|
|
</head>
|
|
<body>
|
|
{% partial 'header' data=activeLocale %}
|
|
{% page %}
|
|
{% partial 'footer' %}
|
|
|
|
</body>
|
|
<script src="{{ ['assets/js/jquery.js', 'assets/js/moment.min.js', 'assets/js/slick.min.js', 'assets/js/news-slider.js',
|
|
'assets/js/jquery.fancybox.min.js', 'assets/js/main.js']|theme }}"></script>
|
|
|
|
{% framework %}
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-BGT89NCBQC"></script>
|
|
<script>
|
|
window.dataLayer = window.dataLayer || [];
|
|
function gtag(){dataLayer.push(arguments);}
|
|
gtag('js', new Date());
|
|
|
|
gtag('config', 'G-BGT89NCBQC');
|
|
</script>
|
|
</html> |