mirror of
https://github.com/kaboomserver/website.git
synced 2024-12-22 15:55:04 +00:00
27 lines
556 B
HTML
27 lines
556 B
HTML
---
|
|
layout: minify
|
|
---
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>
|
|
{{ site.title }} - Free OP | Anarchy | Creative
|
|
</title>
|
|
<meta name="description" content="{{ site.description }}">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="canonical" href="{{ site.url }}">
|
|
<link rel="manifest" href="/site.webmanifest">
|
|
<style>
|
|
{% capture style %}
|
|
{% include style.scss %}
|
|
{% endcapture %}
|
|
{{ style | scssify }}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
{{ content }}
|
|
</main>
|
|
</body>
|
|
</html>
|