popov.link/_includes/head.html
Valentin Popov 9504770729
Collection with additional meta tags
Signed-off-by: Valentin Popov <info@valentineus.link>
2018-04-24 20:32:42 +04:00

36 lines
2.1 KiB
HTML

<head>
<!-- Meta tags -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="canonical" href="{{ page.url | absolute_url | uri_escape }}" />
<link rel="profile" href="http://gmpg.org/xfn/11" />
<!-- Advanced meta tags -->
{% for tag in site.data.meta_tags %}
<meta name="{{ tag.name | strip_newlines | strip_html | strip | normalize_whitespace | xml_escape }}"
content="{{ tag.content | strip_newlines | strip_html | strip | normalize_whitespace | xml_escape }}" />
{% endfor %}
<!-- Title / Description -->
<meta name="application-name" content="{{ page.title | default: site.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | downcase | capitalize }}" />
<meta name="description" content="{{ page.description | default: site.description | strip_newlines | strip_html | strip | normalize_whitespace | smartify | truncate: 100 }}" />
<title>{{ page.title | default: site.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | truncate: 64 }}</title>
<!-- CSS -->
<link rel="stylesheet" href="{{ '/assets/css/fonts.css' | relative_url | uri_escape }}" />
<link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url | uri_escape }}" />
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="{{ '/assets/apple-touch-icon.png' | relative_url | uri_escape }}" />
<link rel="icon" type="image/png" sizes="16x16" href="{{ '/assets/favicon-16x16.png' | relative_url | uri_escape }}" />
<link rel="icon" type="image/png" sizes="32x32" href="{{ '/assets/favicon-32x32.png' | relative_url | uri_escape }}" />
<!-- RSS -->
<link rel="alternate" type="application/atom+xml" title="RSS" href="{{ site.rss | relative_url | uri_escape }}" />
<!--[if lte IE 9]>
<script type="text/javascript" src="{{ '/assets/javascript/html5shiv.min.js' | relative_url | uri_escape }}"></script>
<![endif]-->
</head>