mirror of
https://github.com/kaboomserver/website.git
synced 2024-12-22 07:45:00 +00:00
30 lines
798 B
HTML
30 lines
798 B
HTML
---
|
||
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>
|