20 lines
288 B
HTML
20 lines
288 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel='stylesheet' href='/style.css'>
|
|
<script async src='/script.js'></script>
|
|
<title>{{ page.title }}</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id='main'>
|
|
{{ content }}
|
|
</div>
|
|
|
|
{%- include footer.html -%}
|
|
|
|
</body>
|
|
|
|
</html>
|