1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <!DOCTYPE html>
- <html lang="{{site.dist.country}}">
- <head><meta charset="UTF-8">
- <title>{{page.seo_title}}</title>
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
- <meta name="description" content="{{ site.dist.seo_description | strip_html| strip_newlines }}" />
- <link rel="canonical" href="{{site.current_url}}" />
- <meta property="og:locale" content="{{site.dist.country_alpha_2l}}" />
- <meta property="og:type" content="website" />
- <meta property="og:title" content="{{ site.dist.seo_title }}" />
- <meta property="og:description" content="{{ site.dist.seo_description | strip_html| strip_newlines }}" />
- <meta property="og:url" content="{{site.current_url}}" />
- <meta name="twitter:card" content="summary_large_image" />
- <link rel='shortlink' href='{{site.current_url}}' />
- <link rel="stylesheet" href="{{ site.asset_base_url}}static/tpl/screenprotector/css/css.css?ver=0705">
- <link rel="stylesheet" href="{{ site.asset_base_url}}static/tpl/screenprotector/css/swiper-bundle.min.css?ver=0705">
- <script src="{{ site.asset_base_url}}static/tpl/screenprotector/js/jquery.min.js"></script>
- <script src="{{ site.asset_base_url}}static/tpl/screenprotector/js/swiper-bundle.min.js"></script>
- </head>
- <body>
- {% include '_header.liquid' %}
- <section class="news-header">
- <div class="section-wrapper">
- <h1 class="page-title">{{ page.title | raw }}</h1>
- <div class="breadcrumb-wrapper">
- {% for breadcrumb in breadcrumbs %}
- <a href="{{ breadcrumb.url }}">
- {{ breadcrumb.name }}
- </a>
- {% if forloop.index != forloop.length %}
- <span>/</span>
- {% endif %}
- {% endfor %}</div>
- </div>
- </section>
- <section class="news-list-page">
- <div class="section-wrapper">
- <div class="container">
- <aside class="recent">
- <h2>Recent post</h2>
- <ul class="title-block">
- {% for item in recent_pages %}
- <li> <a href="/pages/{% if item.slug %}{{ item.slug }}{% else %}{{ item.id }}{% endif %}" title="{{ item.title | strip_html }}">{{ item.title | strip_html }}</a></li>
- {% endfor %}
- </ul>
- </aside>
- <div class="news-details">
- <div class="news-details-content">
- <h2 class="entry-title"> {{ page.title | raw }}</h2>
- <div class="entry-meta"><time class="entry-time"> {{page.post_date}}</time> by <span class="entry-author"><span class="entry-author-name">{{site.dist.site_name}}</span></span></div>
- <div class="entry-content">
- {{page.content | raw }}
- </div>
- </div>
- <div class="pagination">
- <!-- Previous Page Link -->
- {% if paginator.previous_page %}
-
-
- <div class="pre"><a href="{{ paginator.previous_page_url }}" title="{{ paginator.previous_page_title }}">{{ paginator.previous_page_title }}</a></div>
-
- {% else %}
-
- {% endif %}
- <!-- Next Page Link -->
- {% if paginator.next_page %}
- <div class="next"><a href="{{ paginator.next_page_url }}" title="{{ paginator.next_page_title }}">{{ paginator.next_page_title }}</a></div>
-
- {% else %}
-
- {% endif %}
-
- </div>
- </div>
- </div><!--container-->
- </div>
- </section>
- {% include '__contact.liquid' %}
- {% include '_footer.liquid' %}
- </body>
- </html>
-
|