lynnesbian.space/_layouts/default.html

21 lines
328 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-06 17:39:05 +00:00
<title>{{ page.title | default: "lynnesbian dot space" }}</title>
</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>
2020-03-07 10:04:45 +00:00
2020-03-06 17:39:05 +00:00
{% include footer.html %}
</body>
2020-03-07 10:04:45 +00:00
</html>