blob: 729abb97f4578ab954d71aab3618ef6c278ddf17 (
plain) (
tree)
|
|
<!doctype html>
<html
xmlns="http://www.w3.org/1999/xhtml"
lang="{{ lang }}"
xml:lang="{{ lang }}"
>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, user-scalable=no"
/>
<link rel="canonical" href="{{- current_url|safe -}}" />
<link rel="stylesheet" href="/css/custom.css" />
<meta name="author" content="{{- config.author -}}" />
<meta
name="description"
content="{%- block description -%}{{- config.description -}}{%- endblock description -%}"
/>
<title>{% block title %}{{- config.title -}}{% endblock title %}</title>
</head>
<body>
<main>{% block content %}{% endblock content %}</main>
</body>
</html>
|