mirror of
https://github.com/kremalicious/blog.git
synced 2024-12-24 18:26:17 +01:00
20 lines
398 B
HTML
20 lines
398 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||
|
<title>{{ page.title }}</title>
|
||
|
<meta name="viewport" content="width=device-width">
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
{% include header.html %}
|
||
|
|
||
|
{{ content }}
|
||
|
|
||
|
{% include footer.html %}
|
||
|
|
||
|
</body>
|
||
|
</html>
|