summaryrefslogtreecommitdiff
path: root/_layouts
diff options
context:
space:
mode:
authorHombreLaser <buran@silosneeded.com>2025-07-24 21:05:16 -0600
committerHombreLaser <buran@silosneeded.com>2025-07-24 21:05:16 -0600
commitda2464caa4ee9c2559eaccdc570dc143eed733a1 (patch)
treeb9fb93a16fa741174b8a5678b04f5f8d3746d49e /_layouts
parentdcb7411da45cecf0c997faba6cd2c1e3af7c8d23 (diff)
Improve index
Diffstat (limited to '_layouts')
-rw-r--r--_layouts/default.html7
-rw-r--r--_layouts/page.html4
-rw-r--r--_layouts/post.html20
3 files changed, 13 insertions, 18 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
index 264c335..5697ebf 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -6,9 +6,10 @@
<div class="columns">
<div class="column page-container mt-4">
{% include top_bar.liquid %}
- <div class="columns content mt-4">
- {{ content }}
- </div>
+
+ {{ content }}
+
+ {% include footer.liquid %}
</div>
</div>
</body>
diff --git a/_layouts/page.html b/_layouts/page.html
index 5e71126..efc43e5 100644
--- a/_layouts/page.html
+++ b/_layouts/page.html
@@ -2,4 +2,6 @@
layout: default
---
-{{ content }}
+<div class="columns content mt-4">
+ {{ content }}
+</div>
diff --git a/_layouts/post.html b/_layouts/post.html
index 3a76d42..17739c5 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -1,16 +1,8 @@
-<!DOCTYPE html>
-<html>
- {% include header.liquid %}
-
- <div class="columns">
- <div class="column page-container mt-4">
- {% include top_bar.liquid %}
-
- <div class="column is-full content mt-4">
- {{ content }}
- </div>
- </div>
- </div>
-</html>
+---
+layout: default
+---
+<div class="column is-full content mt-4">
+ {{ content }}
+</div>