mirror of
https://github.com/kaboomserver/website.git
synced 2025-02-05 06:22:56 +00:00
1f154808f9
* add favicon.svg * make favicon /favicon.svg
37 lines
907 B
HTML
37 lines
907 B
HTML
---
|
||
layout: minify
|
||
---
|
||
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<title>
|
||
{% if page.title %}
|
||
{% unless page.url == "/" %}
|
||
{{ page.title }} –
|
||
{% endunless %}
|
||
{% endif %}
|
||
{{ site.title }}
|
||
{% if page.title == null or 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="icon" type="image/svg+xml" href="/favicon.svg">
|
||
<link rel="canonical" href="{{ site.url }}{{ page.url | replace:'/index.html','/' }}">
|
||
<link rel="alternate" type="application/atom+xml" href="/feed.xml">
|
||
<link rel="manifest" href="/site.webmanifest">
|
||
<style>
|
||
{% capture style %}
|
||
{% include style.scss %}
|
||
{% endcapture %}
|
||
{{ style | scssify }}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<main>
|
||
{{ content }}
|
||
</main>
|
||
</body>
|
||
</html>
|