19 lines
236 B
HTML
19 lines
236 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel='stylesheet' href='/style.css'>
|
|
<title>{{ page.title }}</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div>
|
|
{{ content }}
|
|
</div>
|
|
|
|
{%- include footer.html -%}
|
|
|
|
</body>
|
|
|
|
</html>
|