diff options
author | HombreLaser <buran@silosneeded.com> | 2025-07-24 21:40:47 -0600 |
---|---|---|
committer | HombreLaser <buran@silosneeded.com> | 2025-07-24 21:40:47 -0600 |
commit | ef3fcf1377ebb1b13bc3cb75c35ccef0337faf99 (patch) | |
tree | 3efe58da1c0b8b10f572bc7a82fce5a43a9109c3 /_layouts/post.liquid | |
parent | da2464caa4ee9c2559eaccdc570dc143eed733a1 (diff) |
Diffstat (limited to '_layouts/post.liquid')
-rw-r--r-- | _layouts/post.liquid | 23 |
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> + + |