From 3432d8089ce57fc7e9341f25a63032e13eaadfc1 Mon Sep 17 00:00:00 2001 From: Paul Maddern Date: Thu, 21 Mar 2024 18:50:56 +0000 Subject: [PATCH 1/2] Fix css-truncate-target `css-truncate-target` only works when initialised: ``` css-truncate css-truncate-target ``` --- layouts/partials/post.html | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/layouts/partials/post.html b/layouts/partials/post.html index 8279de0..8af63aa 100644 --- a/layouts/partials/post.html +++ b/layouts/partials/post.html @@ -14,9 +14,11 @@

- {{ .Site.Params.author }}/{{ .Title }} + {{ .Site.Params.author }} + + / + + {{ .Title }}

Created
- \ No newline at end of file + From 896c72fcd013f2829a00d62c7f6ccd34f8e67b00 Mon Sep 17 00:00:00 2001 From: Paul Maddern Date: Thu, 21 Mar 2024 18:52:32 +0000 Subject: [PATCH 2/2] Update post.html --- layouts/partials/post.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/layouts/partials/post.html b/layouts/partials/post.html index 8af63aa..c2047e6 100644 --- a/layouts/partials/post.html +++ b/layouts/partials/post.html @@ -18,7 +18,8 @@ / - {{ .Title }} + {{ .Title }} +
Created