From 09c7c64ba685fc142ceafa8e87223fff623776b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Pilecki?= <100201725+Prawy126@users.noreply.github.com> Date: Thu, 30 Nov 2023 12:57:47 +0100 Subject: [PATCH] Create post.html --- _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 %}