From 36bd972c7ce535e7e62005d1de082aafdf86819d Mon Sep 17 00:00:00 2001 From: Malik Butler Date: Sat, 27 Jan 2018 09:17:03 -0500 Subject: [PATCH] added post layout --- _layouts/post.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 _layouts/post.html diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 0000000..0676aff --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,14 @@ +--- +layout: default +--- + +{{ page.date | date: "%-d %B %Y" }} +

{{ page.title }}

+ +

by {{ page.author | default: site.author }}

+ +{{content}} + +{% if page.tags %} + tags: {{ page.tags | join: " - " }} +{% endif %}