mirror of
https://github.com/zrgn/zrgn.github.io
synced 2024-12-26 16:46:35 +00:00
25 lines
601 B
HTML
25 lines
601 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ site.title }} - {{ page.title }}</title>
|
|
<link rel="stylesheet" href="/assets/zargon.css">
|
|
|
|
{% include style.html %}
|
|
</head>
|
|
|
|
<body>
|
|
<div class="page-wrap">
|
|
<!-- excluding for now since we've only got one page {% include navbar.html %} -->
|
|
<section class="section">
|
|
<div class="container">
|
|
{{ content }}
|
|
</div>
|
|
</section>
|
|
</div>
|
|
{% include footer.html %}
|
|
</body>
|
|
|
|
</html>
|