22 lines
459 B
HTML
22 lines
459 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<title>{{ page.title }}</title>
|
||
|
|
<link rel="stylesheet" href="{{ site.baseurl }}/css/main.css?{{ site.time | date: '%s%N' }}">
|
||
|
|
{% include head.html %}
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body>
|
||
|
|
{% include header.html %}
|
||
|
|
|
||
|
|
<div class="content-wrapper">
|
||
|
|
<div class="left-line"></div>
|
||
|
|
<div class="content-wrapper__inner">
|
||
|
|
{{ content }}
|
||
|
|
</div>
|
||
|
|
{% include footer.html %}
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|