website/_layouts/main.html
2019-07-30 22:56:21 +03:00

34 lines
734 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
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>
<meta name="description" content="{{ site.description }}">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="canonical" href="{{ site.url }}">
<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>