summaryrefslogtreecommitdiff
path: root/_layouts/post.html
diff options
context:
space:
mode:
authorBenjamin Sanders <ben@Benjamins-MacBook-Pro.local>2025-07-04 19:47:35 -0400
committerBenjamin Sanders <ben@Benjamins-MacBook-Pro.local>2025-07-04 19:47:35 -0400
commitcb192289eeecccb750f613b993dc3f366446d4f2 (patch)
tree5ae1e230e0592712774a07f5e2b5bf5f2401eba5 /_layouts/post.html
Initial Commit
Diffstat (limited to '_layouts/post.html')
-rw-r--r--_layouts/post.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/_layouts/post.html b/_layouts/post.html
new file mode 100644
index 0000000..c3410b0
--- /dev/null
+++ b/_layouts/post.html
@@ -0,0 +1,13 @@
+---
+layout: default
+---
+<div id="Blog">
+ <article class="post">
+ {% if page.image %}
+ <img src="{{ page.image | relative_url }}" class="featured-image">
+ {% endif %}
+ <h1>{{ page.title }}</h1>
+ <small><p class="post-date">Published Date: {{ page.date | date: "%B %d, %Y" }}</p>x</small>
+ {{ content }}
+ </article>
+</div> \ No newline at end of file