from server 20.12
This commit is contained in:
parent
92914a2240
commit
1a8fb5aa30
|
|
@ -8,7 +8,6 @@ meta_title = "О нас"
|
|||
meta_description = "russian"
|
||||
robot_index = "index"
|
||||
robot_follow = "nofollow"
|
||||
localeUrl[tm] = "/biz-barada"
|
||||
==
|
||||
<h3><strong>Информационный портал ORIENT</strong></h3>
|
||||
|
||||
|
|
|
|||
|
|
@ -8,6 +8,10 @@ random = 0
|
|||
|
||||
[staticMenu]
|
||||
code = "new-top-menui"
|
||||
|
||||
[staticPage]
|
||||
useContent = 1
|
||||
default = 0
|
||||
==
|
||||
<!DOCTYPE html>
|
||||
<html lang="{{ activeLocale }}">
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ random = 0
|
|||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="stylesheet" href="{{ ['assets/new/styles/style.css']|theme}}" />
|
||||
<link rel="stylesheet" href="{{ 'assets/new/styles/style.css'|theme}}" />
|
||||
<title>{{ this.page.meta_title }}</title>
|
||||
|
||||
{% styles %}
|
||||
|
|
@ -366,12 +366,13 @@ random = 0
|
|||
{% partial 'new/footer' %}
|
||||
|
||||
<!-- SCRIPTS -->
|
||||
<script src="{{ 'assets/new/jquery.js'|theme}}"></script>
|
||||
|
||||
<script src="{{ 'assets/new/scripts/swiper/swiper-bundle.min.js'|theme}}"></script>
|
||||
|
||||
{% scripts %}
|
||||
<script src="{{ 'assets/new/jquery.js'|theme}}"></script>
|
||||
{% framework extras %}
|
||||
|
||||
{% scripts %}
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
||||
|
|
@ -8,7 +8,7 @@ code = "event_menu"
|
|||
==
|
||||
<div class="burger-wrapper">
|
||||
<div class="burger-close">
|
||||
<img src="{{ 'assets/new/assets/icons/close.svg'|theme}}" alt="" />
|
||||
<img src="{{ 'assets/new/icons/close.svg'|theme}}" alt="" />
|
||||
</div>
|
||||
|
||||
<div class="burger-content">
|
||||
|
|
|
|||
|
|
@ -71,6 +71,36 @@ postPage = 404
|
|||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<div class="swiper mainNewsSwiper">
|
||||
<div class="swiper-wrapper">
|
||||
|
||||
{% for post in posts %}
|
||||
<div class="swiper-slide">
|
||||
<a href="{{'new/newPost'|page({id:post.id,slug:post.slug})}}" class="main-news-min-item">
|
||||
<div class="main-news-min-bg">
|
||||
<img src="{{post.featured_image|media|resize(768)}}" alt=""/>
|
||||
<div class="main-news-overlay"></div>
|
||||
<p class="main-news-min-info">
|
||||
{{ post.title }}
|
||||
</p>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
{% endfor %}
|
||||
|
||||
</div>
|
||||
<div class="video-prev main-news-prev">
|
||||
<img src="{{'assets/new/icons/arrow-left-white.svg'|theme}}" alt="" />
|
||||
</div>
|
||||
<div class="video-next main-news-next">
|
||||
<img src="{{'assets/new/icons/arrow-right-white.svg'|theme}}" alt="" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
Loading…
Reference in New Issue