blob: 7eeeaf61e7cbbfd2634a1be6e2ca60d5db0a2e46 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!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 -%}" />
<link rel="alternate" type="application/atom+xml" title="Blog posts" href="{{ get_url(path="/blog/atom.xml", trailing_slash=false) }}" />
<title>{% block title %}{{- config.title -}}{% endblock title %}</title>
</head>
<body>
{% block content %}{% endblock content %}
</body>
</html>
|