1 line
640 B
HTML
1 line
640 B
HTML
{%- import "macros.html" as m -%}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
{% if title in page %}
|
|
<title>{{ page.title }}</title>
|
|
{% else %}
|
|
<title>{{ extra.name }} — {{ extra.description }}</title>
|
|
{% endif %}
|
|
{% if site.highlighter %}
|
|
<link rel="stylesheet" href="{{ site.url }}/assets/css/syntax.css" type="text/css" />
|
|
{% endif %}
|
|
<link rel="stylesheet" href="/main.css" type="text/css" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
</head>
|
|
<body>
|
|
|
|
{% block content %}
|
|
{{ page.content }}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|