This commit is contained in:
merdan 2021-12-17 19:50:25 +05:00
parent db86f8746d
commit fa0ae9468a
20 changed files with 56 additions and 56 deletions

View File

@ -1,3 +1,3 @@
<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4"> <svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4">
<path id="Polygon_1" data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z" fill="#a2a2a2"/> <path data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z" fill="#a2a2a2"/>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 171 B

After

Width:  |  Height:  |  Size: 157 B

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="iso-8859-1"?> <?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 492 492" style="enable-background:new 0 0 492 492;" xml:space="preserve"> viewBox="0 0 492 492" style="enable-background:new 0 0 492 492;" xml:space="preserve">
<g> <g>
<g> <g>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -16,8 +16,8 @@ random = 0
<!DOCTYPE html> <!DOCTYPE html>
<html lang="{{activeLocale}}"> <html lang="{{activeLocale}}">
<head> <head>
{% component 'SeoCmsPage' %}
{% partial 'head' %} {% partial 'head' %}
{% component 'SeoCmsPage' %}
</head> </head>
<body> <body>
<div class="main__banner" style="margin-bottom: 0;"> <div class="main__banner" style="margin-bottom: 0;">
@ -56,4 +56,4 @@ random = 0
</script> </script>
</body> </body>
</html> </html>

View File

@ -21,7 +21,7 @@ postPage = "post"
<?php <?php
function onEnd(){ function onEnd(){
if($this->blogPosts && $this->blogPosts->category){ if($this->blogPosts && $this->blogPosts->category){
$this->page->title = $this->blogPosts->category->name; $this->page->title = $this->blogPosts->category->name;
$this->page->meta_description = strip_tags($this->blogPosts->category->content)?:$this->blogPosts->category->name; $this->page->meta_description = strip_tags($this->blogPosts->category->content)?:$this->blogPosts->category->name;
$this->page->meta_keywords = $this->blogPosts->category->name; $this->page->meta_keywords = $this->blogPosts->category->name;
@ -31,9 +31,9 @@ function onEnd(){
== ==
<div class="main__content"> <div class="main__content">
<div class="heading"> <div class="heading">
<div class="heading__title"> <h1 class="heading__title">
{{category.name}} {{category.name}}
</div> </h1>
{% for item in blogPosts.posts %} {% for item in blogPosts.posts %}
{% partial 'post_list_item' post = item %} {% partial 'post_list_item' post = item %}
{% else %} {% else %}
@ -48,4 +48,4 @@ function onEnd(){
</div> </div>
{% put scripts %} {% put scripts %}
<script src="{{['assets/js/lazy.js','assets/js/main.js']|theme}}"></script> <script src="{{['assets/js/lazy.js','assets/js/main.js']|theme}}"></script>
{% endput %} {% endput %}

View File

@ -26,7 +26,7 @@ localeUrl[en] = "/oldpost"
<time class="news__date"> <time class="news__date">
<span>{{post.published_at|date('d.m.Y')}}</span> <span>{{post.published_at|date('d.m.Y')}}</span>
<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4"> <svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4">
<path id="Polygon_1" data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z" fill="#a2a2a2" /> <path data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z" fill="#a2a2a2" />
</svg> </svg>
<span>{{post.published_at|date('H:i')}}</span> <span>{{post.published_at|date('H:i')}}</span>
</time> </time>
@ -93,4 +93,4 @@ localeUrl[en] = "/oldpost"
} }
}); });
</script> </script>
{% endput %} {% endput %}

View File

@ -59,7 +59,7 @@ post = "post"
<time class="news__date"> <time class="news__date">
<span>{{post.published_at|date('d.m.Y')}}</span> <span>{{post.published_at|date('d.m.Y')}}</span>
<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4"> <svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4">
<path id="Polygon_1" data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z" fill="#a2a2a2" /> <path data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z" fill="#a2a2a2" />
</svg> </svg>
<span>{{post.published_at|date('H:i')}}</span> <span>{{post.published_at|date('H:i')}}</span>
</time> </time>
@ -134,4 +134,4 @@ post = "post"
} }
}); });
</script> </script>
{% endput %} {% endput %}

View File

@ -1,5 +1,6 @@
[viewBag] [viewBag]
== ==
<meta charset="UTF-8">
<link rel="preconnect" href="https://fonts.gstatic.com"> <link rel="preconnect" href="https://fonts.gstatic.com">
<link <link
href="https://fonts.googleapis.com/css2?family=Oswald:wght@600&family=Roboto:wght@300;400;500;700;900&display=swap" href="https://fonts.googleapis.com/css2?family=Oswald:wght@600&family=Roboto:wght@300;400;500;700;900&display=swap"
@ -12,7 +13,6 @@
<link rel="icon" href="{{'assets/images/icon/cropped-cropped-orienticon-192x192.png'|theme}}" sizes="192x192"> <link rel="icon" href="{{'assets/images/icon/cropped-cropped-orienticon-192x192.png'|theme}}" sizes="192x192">
<link rel="apple-touch-icon-precomposed" href="{{'assets/images/icon/cropped-cropped-orienticon-180x180.png'|theme}}"> <link rel="apple-touch-icon-precomposed" href="{{'assets/images/icon/cropped-cropped-orienticon-180x180.png'|theme}}">
<meta name="msapplication-TileImage" content="{{'assets/images/icon/cropped-cropped-orienticon-270x270.png'|theme}}"> <meta name="msapplication-TileImage" content="{{'assets/images/icon/cropped-cropped-orienticon-270x270.png'|theme}}">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="yandex-verification" content="9d83831cdb407bac" /> <meta name="yandex-verification" content="9d83831cdb407bac" />

View File

@ -39,12 +39,12 @@ code = "top-menu"
</h1> </h1>
<div class="header__search-input"> <div class="header__search-input">
<form action="{{ 'search' | page }}" method="get"> <form action="{{ 'search' | page }}" method="get">
<input type="searh" name="q" placeholder="{{'page.search'|_}}"> <input type="text" name="q" placeholder="{{'page.search'|_}}">
<button class="header__search-btn"> <button class="header__search-btn">
<svg xmlns="http://www.w3.org/2000/svg" width="20.414" height="20.414" <svg xmlns="http://www.w3.org/2000/svg" width="20.414" height="20.414"
viewBox="0 0 20.414 20.414"> viewBox="0 0 20.414 20.414">
<g id="Иконкаоиск_" data-name="Иконка (Поиск)" transform="translate(1 1)"> <g data-name="Иконка (Поиск)" transform="translate(1 1)">
<circle id="Ellipse_1" data-name="Ellipse 1" cx="8" cy="8" r="8" fill="none" <circle data-name="Ellipse 1" cx="8" cy="8" r="8" fill="none"
stroke="#242424" stroke-linecap="round" stroke-linejoin="round" stroke="#242424" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" /> stroke-width="2" />
<line id="Line_1" data-name="Line 1" x1="4.35" y1="4.35" <line id="Line_1" data-name="Line 1" x1="4.35" y1="4.35"
@ -67,7 +67,7 @@ code = "top-menu"
<div class="searchModal" id="searchModal"> <div class="searchModal" id="searchModal">
<div class="searchModal__inner"> <div class="searchModal__inner">
<div class="searchClose" id="searchClose"> <div class="searchClose" id="searchClose">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" <svg version="1.1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 492 492" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 492 492"
style="enable-background:new 0 0 492 492;" xml:space="preserve"> style="enable-background:new 0 0 492 492;" xml:space="preserve">
<g> <g>
@ -87,13 +87,13 @@ code = "top-menu"
<img src="{{'assets/images/logo.svg'|theme}}" alt="orient logo"> <img src="{{'assets/images/logo.svg'|theme}}" alt="orient logo">
</div> </div>
<form class="searchInput" action="{{ 'search' | page }}" method="get"> <form class="searchInput" action="{{ 'search' | page }}" method="get">
<input type="searh" name="q" placeholder="{{'page.search'|_}}"> <input type="text" name="q" placeholder="{{'page.search'|_}}">
<button class="searchInput__btn"> <button class="searchInput__btn">
<svg xmlns="http://www.w3.org/2000/svg" width="20.414" height="20.414" viewBox="0 0 20.414 20.414"> <svg xmlns="http://www.w3.org/2000/svg" width="20.414" height="20.414" viewBox="0 0 20.414 20.414">
<g id="Иконкаоиск_" data-name="Иконка (Поиск)" transform="translate(1 1)"> <g data-name="Иконка (Поиск)" transform="translate(1 1)">
<circle id="Ellipse_1" data-name="Ellipse 1" cx="8" cy="8" r="8" fill="none" <circle data-name="Ellipse 1" cx="8" cy="8" r="8" fill="none"
stroke="#242424" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" /> stroke="#242424" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" />
<line id="Line_1" data-name="Line 1" x1="4.35" y1="4.35" transform="translate(13.65 13.65)" <line data-name="Line 1" x1="4.35" y1="4.35" transform="translate(13.65 13.65)"
fill="none" stroke="#242424" stroke-linecap="round" stroke-linejoin="round" fill="none" stroke="#242424" stroke-linecap="round" stroke-linejoin="round"
stroke-width="2" /> stroke-width="2" />
</g> </g>

View File

@ -1,11 +1,11 @@
<div class="card"> <div class="card">
<div class="card__header"> <div class="card__header">
<time class="card__header-date"><span>{{post.published_at|date('d.m.Y')}}</span> <time class="card__header-date">{{post.published_at|date('d.m.Y')}}
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 4"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 4">
<path id="Polygon_1" data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z" <path data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z"
fill="#a2a2a2" /> fill="#a2a2a2" />
</svg> </svg>
<span>{{post.published_at|date('H:i')}}</span> {{post.published_at|date('H:i')}}
</time> </time>
</div> </div>
<a href="{{'post'|page({id:post.id,slug:post.slug})}}" class="card__link"> <a href="{{'post'|page({id:post.id,slug:post.slug})}}" class="card__link">

View File

@ -21,13 +21,13 @@
</div> </div>
</div> </div>
<div class="card__header"> <div class="card__header">
<time class="card__header-date"><span>{{posts.first.published_at|date('d.m.Y')}}</span> <time class="card__header-date">{{posts.first.published_at|date('d.m.Y')}}
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 4"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 4">
<path id="Polygon_1" data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z" <path data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z"
fill="#a2a2a2" /> fill="#a2a2a2" />
</svg> </svg>
<span>{{posts.first.published_at|date('H:i')}}</span> {{posts.first.published_at|date('H:i')}}
</time> </span> </time>
</div> </div>
<a href="{{'post'|page({id:posts.first.id,slug:posts.first.slug})}}" class="card__link"> <a href="{{'post'|page({id:posts.first.id,slug:posts.first.slug})}}" class="card__link">
{{posts.first.title}} {{posts.first.title}}

View File

@ -21,13 +21,13 @@
</div> </div>
</div> </div>
<div class="card__header"> <div class="card__header">
<time class="card__header-date"><span>{{posts.first.published_at|date('d.m.Y')}}</span> <time class="card__header-date">{{posts.first.published_at|date('d.m.Y')}}
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 4"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 4">
<path id="Polygon_1" data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z" <path data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z"
fill="#a2a2a2" /> fill="#a2a2a2" />
</svg> </svg>
<span>{{posts.first.published_at|date('H:i')}}</span> {{posts.first.published_at|date('H:i')}}
</time> </span> </time>
</div> </div>
<a href="{{'post'|page({id:posts.first.id,slug:posts.first.slug})}}" class="card__link"> <a href="{{'post'|page({id:posts.first.id,slug:posts.first.slug})}}" class="card__link">
{{posts.first.title}} {{posts.first.title}}

View File

@ -5,7 +5,7 @@
<img src="{{'assets/images/logo.svg'|theme}}" alt="logo"> <img src="{{'assets/images/logo.svg'|theme}}" alt="logo">
</div> </div>
<div class="popUp__inner-header-close" id="popUpClose1"> <div class="popUp__inner-header-close" id="popUpClose1">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" <svg version="1.1" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 492 492" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 492 492"
style="enable-background:new 0 0 492 492;" xml:space="preserve"> style="enable-background:new 0 0 492 492;" xml:space="preserve">
<g> <g>

View File

@ -17,7 +17,7 @@ maxItems = 6
</div> </div>
<div class="card__header-date"><span>{{news.published_at|date('d.m.Y')}}</span> <div class="card__header-date"><span>{{news.published_at|date('d.m.Y')}}</span>
<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4"> <svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4">
<path id="Polygon_1" data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z" fill="#a2a2a2" /> <path data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z" fill="#a2a2a2" />
</svg> </svg>
<span>{{news.published_at|date('H:i')}}</span> <span>{{news.published_at|date('H:i')}}</span>
</div> </div>
@ -29,4 +29,4 @@ maxItems = 6
{% endfor %} {% endfor %}
</div> </div>
</div> </div>
{% endif %} {% endif %}

View File

@ -9,12 +9,12 @@
{{post.categories.implode('name',',')}} {{post.categories.implode('name',',')}}
{% endif %} {% endif %}
</div> </div>
<time class="card__header-date"><span>{{post.published_at|date('d.m.Y')}}</span> <time class="card__header-date">{{post.published_at|date('d.m.Y')}}
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 4"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 4">
<path id="Polygon_1" data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z" <path data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z"
fill="#a2a2a2" /> fill="#a2a2a2" />
</svg> </svg>
<span>{{post.published_at|date('H:i')}}</span> {{post.published_at|date('H:i')}}
</time> </time>
</div> </div>
<div class="card__header"> <div class="card__header">
@ -23,4 +23,4 @@
<a href="{{'post'|page({id:post.id,slug:post.slug})}}" class="card__link"> <a href="{{'post'|page({id:post.id,slug:post.slug})}}" class="card__link">
{{post.title}} {{post.title}}
</a> </a>
</div> </div>

View File

@ -16,11 +16,11 @@ exceptPost = "{{ :id }}"
<div class="card"> <div class="card">
<div class="card__header"> <div class="card__header">
<time class="card__header-date"> <time class="card__header-date">
<span>{{post.published_at|date('d.m.Y')}}</span> {{post.published_at|date('d.m.Y')}}
<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4"> <svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4">
<path id="Polygon_1" data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z" fill="#a2a2a2" /> <path data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z" fill="#a2a2a2" />
</svg> </svg>
<span>{{post.published_at|date('H:i')}}</span> {{post.published_at|date('H:i')}}
</time> </time>
<div class="card__header-view"> <div class="card__header-view">
<svg xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg">
@ -40,4 +40,4 @@ exceptPost = "{{ :id }}"
{{post.title}} {{post.title}}
</a> </a>
</div> </div>
{% endfor %} {% endfor %}

View File

@ -1,11 +1,11 @@
<div class="card"> <div class="card">
<div class="card__header"> <div class="card__header">
<time class="news__date"> <time class="news__date">
<span>{{post.published_at|date('d.m.Y')}}</span> {{post.published_at|date('d.m.Y')}}
<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4"> <svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4">
<path id="Polygon_1" data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z" fill="#a2a2a2" /> <path data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z" fill="#a2a2a2" />
</svg> </svg>
<span>{{post.published_at|date('H:i')}}</span> {{post.published_at|date('H:i')}}
</time> </time>
<div class="card__header-view"> <div class="card__header-view">
<svg xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg">

View File

@ -13,7 +13,7 @@
{{post.published_at|date('d.m.Y')}} {{post.published_at|date('d.m.Y')}}
</span> </span>
<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4"> <svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4">
<path id="Polygon_1" data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z" <path data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z"
fill="#a2a2a2" /> fill="#a2a2a2" />
</svg> </svg>
<span> <span>

View File

@ -16,7 +16,7 @@ maxItems = 6
</div> </div>
<div class="card__header-date"><span>{{news.published_at|date('d.m.Y')}}</span> <div class="card__header-date"><span>{{news.published_at|date('d.m.Y')}}</span>
<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4"> <svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4">
<path id="Polygon_1" data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z" fill="#a2a2a2" /> <path data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z" fill="#a2a2a2" />
</svg> </svg>
<span>{{news.published_at|date('H:i')}}</span> <span>{{news.published_at|date('H:i')}}</span>
</div> </div>
@ -27,4 +27,4 @@ maxItems = 6
</div> </div>
{% endfor %} {% endfor %}
</div> </div>
{% endif %} {% endif %}

View File

@ -46,7 +46,7 @@ postPage = 404
{{post.published_at|date('H:i')}} {{post.published_at|date('H:i')}}
</span> </span>
<svg xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg">
<path id="Polygon_1" data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z" fill="#a2a2a2" /> <path data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z" fill="#a2a2a2" />
</svg> </svg>
<span> <span>
{{post.published_at|date('d.m.Y')}} {{post.published_at|date('d.m.Y')}}
@ -68,13 +68,13 @@ postPage = 404
</div> </div>
<div class="p3"> <div class="p3">
<svg xmlns="http://www.w3.org/2000/svg" width="9.414" height="16.828" viewBox="0 0 9.414 16.828"> <svg xmlns="http://www.w3.org/2000/svg" width="9.414" height="16.828" viewBox="0 0 9.414 16.828">
<path id="Path_6497" data-name="Path 6497" d="M19,5l-7,7,7,7" transform="translate(-11 -3.586)" fill="none" <path data-name="Path 6497" d="M19,5l-7,7,7,7" transform="translate(-11 -3.586)" fill="none"
stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" /> stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" />
</svg> </svg>
</div> </div>
<div class="n3"> <div class="n3">
<svg xmlns="http://www.w3.org/2000/svg" width="9.414" height="16.828" viewBox="0 0 9.414 16.828"> <svg xmlns="http://www.w3.org/2000/svg" width="9.414" height="16.828" viewBox="0 0 9.414 16.828">
<path id="Path_6496" data-name="Path 6496" d="M12,5l7,7-7,7" transform="translate(-10.586 -3.586)" <path data-name="Path 6496" d="M12,5l7,7-7,7" transform="translate(-10.586 -3.586)"
fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" /> fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" />
</svg> </svg>
</div> </div>
@ -82,13 +82,13 @@ postPage = 404
<div class="newsSlider__outer"> <div class="newsSlider__outer">
<div class="p2"> <div class="p2">
<svg xmlns="http://www.w3.org/2000/svg" width="9.414" height="16.828" viewBox="0 0 9.414 16.828"> <svg xmlns="http://www.w3.org/2000/svg" width="9.414" height="16.828" viewBox="0 0 9.414 16.828">
<path id="Path_6497" data-name="Path 6497" d="M19,5l-7,7,7,7" transform="translate(-11 -3.586)" fill="none" <path data-name="Path 6497" d="M19,5l-7,7,7,7" transform="translate(-11 -3.586)" fill="none"
stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" /> stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" />
</svg> </svg>
</div> </div>
<div class="n2"> <div class="n2">
<svg xmlns="http://www.w3.org/2000/svg" width="9.414" height="16.828" viewBox="0 0 9.414 16.828"> <svg xmlns="http://www.w3.org/2000/svg" width="9.414" height="16.828" viewBox="0 0 9.414 16.828">
<path id="Path_6496" data-name="Path 6496" d="M12,5l7,7-7,7" transform="translate(-10.586 -3.586)" <path data-name="Path 6496" d="M12,5l7,7-7,7" transform="translate(-10.586 -3.586)"
fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" /> fill="none" stroke="#fff" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" />
</svg> </svg>
</div> </div>
@ -100,7 +100,7 @@ postPage = 404
<div class="newsSlider__item-content-date"> <div class="newsSlider__item-content-date">
<span>{{post.published_at|date('H:i')}}</span> <span>{{post.published_at|date('H:i')}}</span>
<svg xmlns="http://www.w3.org/2000/svg"> <svg xmlns="http://www.w3.org/2000/svg">
<path id="Polygon_1" data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z" fill="#a2a2a2" /> <path data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z" fill="#a2a2a2" />
</svg> </svg>
<span>{{post.published_at|date('d.m.Y')}}</span> <span>{{post.published_at|date('d.m.Y')}}</span>
</div> </div>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="iso-8859-1"?> <?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> <!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 492 492" style="enable-background:new 0 0 492 492;" xml:space="preserve"> viewBox="0 0 492 492" style="enable-background:new 0 0 492 492;" xml:space="preserve">
<g> <g>
<g> <g>

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB