1
0
Fork 0
mirror of https://github.com/zrgn/zrgn.github.io synced 2025-06-27 22:28:34 +00:00

Adding lots of stuff to make this an actual site driven by json data

This commit is contained in:
Patrick Connelly 2019-05-14 13:09:22 -04:00
parent 61dd13262f
commit 4bf0b6bad0
23 changed files with 26326 additions and 15 deletions

25
_layouts/page.html Normal file
View file

@ -0,0 +1,25 @@
<!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/css/bulma/bulma.min.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>