1
0
Fork 0
mirror of https://github.com/zrgn/zrgn.github.io synced 2025-07-01 16:18:35 +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

@ -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>