16 lines
651 B
HTML
16 lines
651 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
{% if page.no-favicon %}<!-- No favicon -->{% else %}<link rel="shortcut icon" href="/icons/favicon-{{ page.favicon }}.ico"/>
|
|
<link rel="apple-touch-icon" href="/icons/icon-{{ page.favicon }}.png"/>{% endif %}
|
|
<title>{% if page.title %}{{ page.title }}{% else %}{{ page.subdomain }}.{{ site.domain }}{% endif %}</title>
|
|
<link rel="stylesheet" href="/style.css">
|
|
<style>body { background: {% if page.background %}{{ page.background }}{% else %}gray{% endif %}; }</style>
|
|
</head>
|
|
<body>
|
|
{{ content }}
|
|
</body>
|
|
</html>
|