2022-12-14 15:55:13 +00:00
|
|
|
[localePicker]
|
2022-12-16 06:59:28 +00:00
|
|
|
forceUrl = 1
|
2022-12-14 15:55:13 +00:00
|
|
|
|
|
|
|
|
[adverts]
|
2022-12-16 06:59:28 +00:00
|
|
|
code = "samsung"
|
|
|
|
|
type = "slider"
|
2022-12-14 15:55:13 +00:00
|
|
|
random = 0
|
2022-12-19 20:27:54 +00:00
|
|
|
|
|
|
|
|
[staticMenu]
|
|
|
|
|
code = "new-top-menui"
|
2022-12-20 06:10:23 +00:00
|
|
|
|
|
|
|
|
[staticPage]
|
|
|
|
|
useContent = 1
|
|
|
|
|
default = 0
|
2022-12-25 12:30:38 +00:00
|
|
|
|
|
|
|
|
[SeoCmsPage]
|
2022-12-14 15:55:13 +00:00
|
|
|
==
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="{{ activeLocale }}">
|
|
|
|
|
|
|
|
|
|
<head>
|
2023-02-17 06:39:53 +00:00
|
|
|
|
2022-12-25 12:30:38 +00:00
|
|
|
{% partial 'new/head' %}
|
|
|
|
|
{% component 'SeoCmsPage' %}
|
2022-12-14 15:55:13 +00:00
|
|
|
{% styles %}
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body>
|
2023-04-17 11:44:40 +00:00
|
|
|
|
2022-12-29 11:38:21 +00:00
|
|
|
|
|
|
|
|
{% partial 'new/mobile-search' %}
|
2022-12-14 15:55:13 +00:00
|
|
|
<section class="big-banner">
|
|
|
|
|
<!-- <a href="#"> -->
|
|
|
|
|
<picture>
|
2023-02-17 06:39:53 +00:00
|
|
|
|
2022-12-14 15:55:13 +00:00
|
|
|
{% component 'adverts'%}
|
2023-02-17 06:39:53 +00:00
|
|
|
|
2022-12-14 15:55:13 +00:00
|
|
|
</picture>
|
|
|
|
|
<!-- </a> -->
|
|
|
|
|
</section>
|
2023-02-17 06:39:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-12-14 15:55:13 +00:00
|
|
|
<!-- HEAD ======== -->
|
|
|
|
|
<header class="header">
|
|
|
|
|
<div class="container">
|
|
|
|
|
<div class="header-inner">
|
2023-02-17 06:39:53 +00:00
|
|
|
|
|
|
|
|
|
2022-12-14 15:55:13 +00:00
|
|
|
{% partial 'new/mobile-menu' %}
|
2023-02-17 06:39:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-12-14 15:55:13 +00:00
|
|
|
<div class="header-search-icon">
|
|
|
|
|
<img src="{{ 'assets/new/icons/search.svg'|theme}}" alt="" />
|
|
|
|
|
</div>
|
2023-02-17 06:39:53 +00:00
|
|
|
|
2022-12-14 15:55:13 +00:00
|
|
|
<div class="header-left">
|
2022-12-25 12:30:38 +00:00
|
|
|
<a href="/" class="header-logo">
|
2023-01-11 11:28:59 +00:00
|
|
|
<!-- <img src="{{ 'assets/images/newYearLogo.png'|theme}}" alt="" /> -->
|
|
|
|
|
<img src="{{ 'assets/new/icons/orientlogo.svg'|theme}}" alt="Orient News" />
|
2022-12-14 15:55:13 +00:00
|
|
|
</a>
|
2022-12-29 11:38:21 +00:00
|
|
|
<h1> {{'site.slogan'|_}}</h1>
|
2022-12-14 15:55:13 +00:00
|
|
|
</div>
|
|
|
|
|
<div class="header-right">
|
|
|
|
|
<ul class="header-ext">
|
|
|
|
|
{% if this.theme.facebook %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="{{ this.theme.facebook }}">
|
|
|
|
|
<img src="{{'assets/new/icons/fb.svg'|theme}}" alt="" />
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% if this.theme.instagram %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="{{ this.theme.instagram }}">
|
|
|
|
|
<img src="{{'assets/new/icons/insta.svg'|theme}}" alt="" />
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
{% endif %}
|
2023-02-17 06:39:53 +00:00
|
|
|
|
2022-12-14 15:55:13 +00:00
|
|
|
{% if this.theme.telegram %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="{{ this.theme.telegram }}">
|
|
|
|
|
<img src="{{'assets/new/icons/tg.svg'|theme}}" alt="" />
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
{% endif %}
|
2023-02-17 06:39:53 +00:00
|
|
|
|
2022-12-14 15:55:13 +00:00
|
|
|
{% if this.theme.twitter %}
|
|
|
|
|
<li>
|
|
|
|
|
<a href="{{ this.theme.twitter }}">
|
|
|
|
|
<img src="{{'assets/new/icons/twit.svg'|theme}}" alt="" />
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
{% endif %}
|
|
|
|
|
</ul>
|
2022-12-19 09:40:00 +00:00
|
|
|
{% partial 'new/searchForm' %}
|
2022-12-14 15:55:13 +00:00
|
|
|
</div>
|
2023-02-17 06:39:53 +00:00
|
|
|
|
2022-12-14 15:55:13 +00:00
|
|
|
<div class="header-burger">
|
|
|
|
|
<img src="{{ 'assets/new/icons/burger.svg'|theme}}" alt="" />
|
|
|
|
|
</div>
|
2023-02-17 06:39:53 +00:00
|
|
|
|
|
|
|
|
|
2022-12-14 15:55:13 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</header>
|
2023-02-17 06:39:53 +00:00
|
|
|
|
2022-12-14 15:55:13 +00:00
|
|
|
{% partial 'newMenu/menu' %}
|
2023-02-17 06:39:53 +00:00
|
|
|
|
2022-12-23 09:55:31 +00:00
|
|
|
{% partial 'new/latest-news-mobile' %}
|
2023-02-17 06:39:53 +00:00
|
|
|
|
2022-12-14 15:55:13 +00:00
|
|
|
<!-- HEAD end ======== -->
|
2023-02-17 06:39:53 +00:00
|
|
|
|
2022-12-14 15:55:13 +00:00
|
|
|
{% page %}
|
2023-02-17 06:39:53 +00:00
|
|
|
|
2022-12-14 15:55:13 +00:00
|
|
|
{% partial 'new/footer' %}
|
|
|
|
|
|
2022-12-16 06:59:28 +00:00
|
|
|
<script src="{{ 'assets/new/jquery.js'|theme}}"></script>
|
2022-12-14 15:55:13 +00:00
|
|
|
<script src="{{ 'assets/new/scripts/swiper/swiper-bundle.min.js'|theme}}"></script>
|
2023-01-20 17:10:54 +00:00
|
|
|
<script src="{{ 'assets/new/copy.js'|theme}}"></script>
|
2023-02-17 06:39:53 +00:00
|
|
|
|
|
|
|
|
{% framework extras %}
|
2023-02-13 16:15:38 +00:00
|
|
|
{% scripts %}
|
2022-12-23 09:55:31 +00:00
|
|
|
|
2023-02-17 06:39:53 +00:00
|
|
|
|
|
|
|
|
|
2022-12-25 12:30:38 +00:00
|
|
|
<!-- javascript end
|
|
|
|
|
============================================= -->
|
|
|
|
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
|
|
|
|
<script async src="https://www.googletagmanager.com/gtag/js?id=G-HHRB3PCSBQ"></script>
|
|
|
|
|
<script>
|
|
|
|
|
window.dataLayer = window.dataLayer || [];
|
|
|
|
|
function gtag(){dataLayer.push(arguments);}
|
|
|
|
|
gtag('js', new Date());
|
|
|
|
|
|
|
|
|
|
gtag('config', 'G-HHRB3PCSBQ');
|
|
|
|
|
</script>
|
|
|
|
|
|
2022-12-14 15:55:13 +00:00
|
|
|
</body>
|
|
|
|
|
|
2023-04-17 11:44:40 +00:00
|
|
|
</html>
|