summaryrefslogtreecommitdiff
path: root/_layouts/post.liquid
diff options
context:
space:
mode:
authorHombreLaser <sebastian-440@live.com>2024-05-07 11:45:46 -0600
committerHombreLaser <sebastian-440@live.com>2024-05-07 11:45:46 -0600
commita4c0692f8dbab80cf5c0b5644ec050322040c4e3 (patch)
tree3ea2f9dc891a13bbcf8b8980c5bf6f2ebb0b9dc2 /_layouts/post.liquid
parentacc3c3caf7029f92a2b146c29a510181c1b42a65 (diff)
Add dark theme
Diffstat (limited to '_layouts/post.liquid')
-rw-r--r--_layouts/post.liquid22
1 files changed, 22 insertions, 0 deletions
diff --git a/_layouts/post.liquid b/_layouts/post.liquid
new file mode 100644
index 0000000..f4c4374
--- /dev/null
+++ b/_layouts/post.liquid
@@ -0,0 +1,22 @@
+{% include header.liquid %}
+
+<body>
+ {% include banner.liquid %}
+
+ <div class="columns">
+ <div class="column mt-6 ml-18 is-two-thirds">
+ <div class="column mb-2 content">
+ <h1>
+ <a href="{{ site.baseurl}}{{ page.url }}">
+ {{ page.date | date: "%b %-d, %Y" }} - {{ page.title }}
+ </a>
+ </h1>
+ {{ content }}
+ </div>
+ {% include navigation_buttons.liquid %}
+ </div>
+ <div class="column mr-18">
+ {% include sidenav.liquid %}
+ </div>
+ </div>
+</body>