website/_layouts/main.html

27 lines
510 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>
2018-12-14 18:36:21 +00:00
{{ site.title }} - Free OP | Anarchy | Creative
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">
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>