31 lines
1.3 KiB
HTML
31 lines
1.3 KiB
HTML
{% if section %}
|
|
{% set meta = section %}
|
|
{% else %}
|
|
{% if page %}
|
|
{% set meta = page %}
|
|
{% endif %}
|
|
{% endif %}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{{ meta.title }}</title>
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:site" content="{%if config.title %}{{ config.title }}{% else %}{{ config.base_url }}{% endif %}">
|
|
<meta property="og:url" content="{{ get_url(path=meta.path) }}">
|
|
<meta property="og:title" content="{{ meta.title }}">
|
|
{% if meta.description -%}
|
|
<meta property="og:description" content="{{ meta.description }}">
|
|
{%- endif %}
|
|
{% if meta.extra.thumbnail -%}
|
|
<meta property="og:image" content="{{ get_url(path=meta.extra.thumbnail) }}">
|
|
{%- endif %}
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Cardo&family=Raleway&family=Noto+Serif+Tibetan&display=swap" rel="stylesheet">
|
|
{% block style %} {% endblock %}
|
|
</head>
|
|
<body>
|
|
{% block content %} {% endblock %}
|
|
</body>
|
|
</html> |