15 lines
530 B
HTML
15 lines
530 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="shortcut icon" href="/favicons/favicon.ico"/>
|
|
<link rel="apple-touch-icon" href="/favicons/icon.png"/>
|
|
<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>
|