summaryrefslogtreecommitdiff
path: root/_layouts/post.liquid
diff options
context:
space:
mode:
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>
+
+