website/_layouts/default.html

37 lines
847 B
HTML
Raw Normal View History

2018-04-24 17:33:19 +00:00
---
layout: minify
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>
2019-07-30 19:30:13 +00:00
{% if page.title %}
2019-07-30 21:26:31 +00:00
{% unless page.url == "/" %}
{{ page.title }}
{% endunless %}
2019-07-30 19:30:13 +00:00
{% endif %}
{{ site.title }}
2019-07-30 21:26:31 +00:00
{% if page.title == null or page.url == "/" %}
2019-07-30 19:30:13 +00:00
- Free OP | Anarchy | Creative
{% endif %}
2018-04-24 17:33:19 +00:00
</title>
<meta name="description" content="{{ site.description }}">
<meta name="viewport" content="width=device-width, initial-scale=1">
2019-07-30 20:06:01 +00:00
<link rel="canonical" href="{{ site.url }}{{ page.url | replace:'/index.html','/' }}">
2019-07-30 19:56:21 +00:00
<link rel="alternate" type="application/atom+xml" href="/feed.xml">
2018-10-01 14:03:14 +00:00
<link rel="manifest" href="/site.webmanifest">
2018-12-14 18:36:21 +00:00
<style>
{% capture style %}
{% include style.scss %}
{% endcapture %}
{{ style | scssify }}
</style>
2018-04-24 17:33:19 +00:00
</head>
<body>
2018-10-01 14:03:14 +00:00
<main>
2018-04-24 17:33:19 +00:00
{{ content }}
</main>
</body>
</html>