Short cut bitches

This commit is contained in:
Set Sakrecoer 2019-05-17 09:34:43 +02:00
parent 03a15516b0
commit dcceed1b04
34 changed files with 1532 additions and 112 deletions

6
_layouts/blog.html Normal file
View file

@ -0,0 +1,6 @@
---
layout: default
---
<div class="blogpost">
{{ content }}
</div>

26
_layouts/default.html Normal file
View file

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<head>
{% include metahead.html %}
</head>
<body>
{% if page.url == "/" %}
{% include hero.html %}
{% else %}
{% include header.html %}
{% endif %}
<!-- <div id="navigation"> </div> -->
<div id="content">
{{ content }}
</div>
<div id="footer">
{% include footer.html %}
</div>
</body>
</html>

11
_layouts/infopages.html Normal file
View file

@ -0,0 +1,11 @@
---
layout: default
---
<div class="column">
<h1>{{ page.title }}</h1>
<h3>{{ page.description }}</h3>
{{ content }}
</div>
<div class="column">
{% include contact.html %}
</div>