lynnesbian.space/_layouts/default.html

20 lines
398 B
HTML
Raw Normal View History

2020-03-06 17:39:05 +00:00
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset="UTF-8">
2020-03-07 10:04:45 +00:00
<link rel="stylesheet" type="text/css" href="/assets/style.css">
2020-03-16 15:15:43 +00:00
<script src='/assets/script.js'></script>
<title>{% if page.layout == 'project' %}Projects - {% endif %}{{ page.title | default: "lynnesbian dot space" }}</title>
2020-03-06 17:39:05 +00:00
</head>
<body>
2020-03-12 09:21:03 +00:00
{% include header.html %}
2020-03-06 17:39:05 +00:00
<div id='main'>
{{ content }}
</div>
</body>
2020-03-07 10:04:45 +00:00
</html>