17 lines
363 B
HTML
17 lines
363 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{{ page.title }}</title>
|
|
<link rel="stylesheet" href="/assets/css/styles.css">
|
|
</head>
|
|
<div id='head'>
|
|
{% include header.html %}
|
|
</div>
|
|
|
|
<div class='content'>{{ content }}</div>
|
|
<div id='foot'>
|
|
{% include footer.html %}
|
|
</div>
|
|
</html>
|