summaryrefslogtreecommitdiff
path: root/_layouts/post.liquid
diff options
context:
space:
mode:
authorHombreLaser <buran@silosneeded.com>2025-07-24 21:40:47 -0600
committerHombreLaser <buran@silosneeded.com>2025-07-24 21:40:47 -0600
commitef3fcf1377ebb1b13bc3cb75c35ccef0337faf99 (patch)
tree3efe58da1c0b8b10f572bc7a82fce5a43a9109c3 /_layouts/post.liquid
parentda2464caa4ee9c2559eaccdc570dc143eed733a1 (diff)
Improve post pageHEADmaster
Diffstat (limited to '_layouts/post.liquid')
-rw-r--r--_layouts/post.liquid23
1 files changed, 23 insertions, 0 deletions
diff --git a/_layouts/post.liquid b/_layouts/post.liquid
new file mode 100644
index 0000000..c635286
--- /dev/null
+++ b/_layouts/post.liquid
@@ -0,0 +1,23 @@
+---
+layout: default
+---
+<div class="column is-full content mt-4">
+ <div class="columns is-vcentered">
+ <div class="column is-narrow">
+ <h1>
+ {{ page.title }}
+ </h1>
+ </div>
+ <div class="column">
+ {{ page.date | date: "%A %d, %B %Y" }}
+ </div>
+ </div>
+ {% for tag in page.tags %}
+ <div class="columns post-tag">
+ {{ tag }}
+ </div>
+ {% endfor %}
+ {{ content }}
+</div>
+
+