diff options
Diffstat (limited to '_layouts/post.html')
| -rw-r--r-- | _layouts/post.html | 13 |
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 |
