20 lines
587 B
Twig
20 lines
587 B
Twig
{# Charset #}
|
|
<meta charset="utf-8">
|
|
|
|
{# Title #}
|
|
{% if page.title is defined %}
|
|
<title>{{ page.title }} - {{ site.title }}</title>
|
|
{% else %}
|
|
<title>{{ site.title }}</title>
|
|
{% endif %}
|
|
|
|
{# Description #}
|
|
{% if page.description is defined %}
|
|
<meta name="description" content="{{ page.description }}">
|
|
{% endif %}
|
|
|
|
{# Other meta fields #}
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="yandex-verification" content="eb6443fccb57d7d2" />
|
|
<link href="https://fonts.googleapis.com/css?family=PT+Serif:400,700&subset=cyrillic" rel="stylesheet">
|