21 lines
494 B
HTML
21 lines
494 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<title>
|
|
{% if page.title %}
|
|
{{ page.title }}
|
|
{% else %}
|
|
{{ site.name }} — {{ site.description }}
|
|
{% endif %}
|
|
</title>
|
|
{% if site.highlighter %}
|
|
<link rel='stylesheet' href='{{ site.url }}/assets/css/syntax.css' type='text/css'>
|
|
{% endif %}
|
|
<meta name='viewport' content='width=device-width, initial-scale=1'>
|
|
</head>
|
|
<body>
|
|
{{ content }}
|
|
</body>
|
|
</html>
|