website/_layouts/main.html

37 lines
1,009 B
HTML
Raw Normal View History

2019-07-30 21:19:41 +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.title == null %}
- Free OP | Anarchy | Creative
{% endif %}
</title>
2020-07-18 12:46:20 +00:00
<meta http-equiv="Content-Security-Policy" content="default-src 'none'; font-src data:; img-src 'self'; manifest-src 'self'; style-src 'unsafe-inline'; upgrade-insecure-requests">
<meta http-equiv="X-Frame-Options" content="deny">
2019-07-30 21:19:41 +00:00
<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="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>