website/_layouts/default.html

31 lines
798 B
HTML
Raw Normal View History

2018-04-24 17:33:19 +00:00
---
layout: minify
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>
{% if page.title %}
{{ page.title }}
{% endif %}
{{ site.title }}
{% if page.url == "/" %}
- Free OP | Anarchy | Creative
{% endif %}
</title>
<meta name="description" content="{{ site.description }}">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="canonical" href="{{ site.url }}{{ page.url | replace:'/index.html','/' }}">
<link rel="stylesheet" href="/style.css">
<link rel="apple-touch-icon" href="/icons/apple-touch-icon.png">
<link rel="manifest" href="/icons/manifest.webmanifest">
<link rel="mask-icon" href="/icons/safari-pinned-tab.svg" color="#00588e">
</head>
<body>
<main id="main">
{{ content }}
</main>
</body>
</html>