From 97bb47346006cf34760aa8f3f68da19c0ed18ef2 Mon Sep 17 00:00:00 2001
From: MatthewOwens <matthew@owens.tech>
Date: Tue, 21 Jul 2020 17:08:01 +0100
Subject: [PATCH] added p tags to post listing

---
 scripts/posts.awk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/posts.awk b/scripts/posts.awk
index d9593f4..a024f66 100644
--- a/scripts/posts.awk
+++ b/scripts/posts.awk
@@ -8,7 +8,7 @@ BEGIN {
 	file = sprintf("%s-%s-%s-%s", $1, $2, $3, $4)
 	string = sprintf("%s/%s/%s - %s", $1, $2, $3, $4)
 
-	printf("\t<div id=\"post-list-item\"> <a href=\"/posts/%s.html\">%s</a></div>\n", file, string)
+	printf("\t<div id=\"post-list-item\"> <p><a href=\"/posts/%s.html\">%s</a></p></div>\n", file, string)
 }
 
 END {
-- 
2.20.1