1
0
Fork 0
mirror of https://github.com/zrgn/zrgn.github.io synced 2025-05-29 16:42:30 +00:00

Move to standard Jekyll layout.

One standard layout broken down into included components: HTML head,
navbar, and footer.
This commit is contained in:
Alex Wood 2019-05-30 10:24:11 -04:00
parent 0534a81c9f
commit fbcb8ba5f2
11 changed files with 52 additions and 110 deletions

View file

@ -1,25 +0,0 @@
<!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>

View file

@ -0,0 +1,32 @@
{% include top.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">
<div class="columns">
<div class="column is-one-third">
<div class="has-text-centered">
<img src="{{ site.baseurl }}/images/zargon_face.png" />
</div>
<section class="hero">
<div class="hero-body has-text-centered">
<h2 class="subtitle">
Formalities of Zargon
</h2>
</div>
</section>
</div>
<div class="column content">
{{ content }}
</div>
</div>
</div>
</section>
</div>
{% include footer.html %}
</body>
</html>