mirror of
https://github.com/kemko/liquid.git
synced 2026-01-01 15:55:40 +03:00
55 lines
2.5 KiB
HTML
55 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
<meta charset="utf-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||
|
||
<title>{% if page.title %}{{ page.title }} – {% endif %}{{ site.title }}</title>
|
||
|
||
<meta name="description" content="{{ page.description | default: site.description }}">
|
||
<meta name="author" content="Shopify">
|
||
|
||
<meta name="robots" content="index, follow">
|
||
<meta name="mobile-web-app-capable" content="yes">
|
||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||
<meta name="apple-mobile-web-app-status-bar-style" content="default">
|
||
|
||
<link rel="stylesheet" href="{{ '/css/main.css' | prepend: site.baseurl }}">
|
||
<link rel="icon" type="image/png" href="{{ '/images/icons/water-drop-32x.png' | prepend: site.baseurl }}" sizes="32x32">
|
||
<link rel="icon" type="image/png" href="{{ '/images/icons/water-drop-64x.png' | prepend: site.baseurl }}" sizes="64x64">
|
||
<link rel="canonical" href="{{ page.url | replace: 'index.html','' | prepend: site.baseurl | prepend: site.url }}">
|
||
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" />
|
||
|
||
<meta property="og:site_name" content="{{ site.title }}">
|
||
<meta property="og:type" content="website">
|
||
<meta property="og:url" content="{{ site.url | append: site.baseurl }}">
|
||
<meta property="og:title" content="{{ page.title | default: site.title }}">
|
||
<meta property="og:description" content="{{ page.description | default: site.description }}">
|
||
|
||
<meta name="twitter:site" content="{{ site.title }}">
|
||
<meta name="twitter:card" content="summary">
|
||
<meta name="twitter:url" content="{{ site.url | append: site.baseurl }}">
|
||
<meta name="twitter:title" content="{{ page.title | default: site.title }}">
|
||
<meta name="twitter:description" content="{{ page.description | default: site.description }}">
|
||
</head>
|
||
|
||
<body>
|
||
|
||
{% include sidebar.html %}
|
||
|
||
<div class="content__overlay"></div>
|
||
<main class="content__area" role="main">
|
||
<div class="content">
|
||
<button class="menu-button">
|
||
<span aria-hidden="true">{% include icons/three-bars.svg %}</span>
|
||
<span>Menu</span>
|
||
</button>
|
||
{% if page.title %}<h1>{{ page.title }}</h1>{% endif %}
|
||
{{ content }}
|
||
</div>
|
||
</main>
|
||
<script src="{{ '/js/script.js' | prepend: site.baseurl }}"></script>
|
||
</body>
|
||
</html>
|