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:
parent
0534a81c9f
commit
fbcb8ba5f2
11 changed files with 52 additions and 110 deletions
|
@ -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>
|
32
_layouts/standard-page.html
Normal file
32
_layouts/standard-page.html
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue