From a38c8e2705c64a84cc46de0b90759b12097300fc Mon Sep 17 00:00:00 2001 From: Roan Horning Date: Wed, 23 Oct 2024 07:29:58 -0400 Subject: [PATCH 1/5] Add MACRO day_from_date --- templates/shared-utils.tpl.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/templates/shared-utils.tpl.html b/templates/shared-utils.tpl.html index 4ed3e3f..bef556e 100644 --- a/templates/shared-utils.tpl.html +++ b/templates/shared-utils.tpl.html @@ -49,6 +49,11 @@ + + + + + -- 2.43.5 From 7d07b8b8149181895b1cf84dc8a1b49a4afc83ad Mon Sep 17 00:00:00 2001 From: Roan Horning Date: Sun, 27 Oct 2024 09:48:45 -0400 Subject: [PATCH 2/5] Add weekday of episode to release information displayed --- templates/content-episode.tpl.html | 2 +- templates/content-index.tpl.html | 2 +- templates/content-twat_episode.tpl.html | 2 +- templates/shared-episode-summary.tpl.html | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/content-episode.tpl.html b/templates/content-episode.tpl.html index 470eb55..bda26f4 100644 --- a/templates/content-episode.tpl.html +++ b/templates/content-episode.tpl.html @@ -17,7 +17,7 @@

-Hosted by on is flagged as and is released under a license.
+Hosted by on , is flagged as and is released under a license.

diff --git a/templates/content-index.tpl.html b/templates/content-index.tpl.html index b40c545..6fecc95 100644 --- a/templates/content-index.tpl.html +++ b/templates/content-index.tpl.html @@ -55,7 +55,7 @@

hpr ::

- Hosted by on is flagged as and released under a license.
+ Hosted by on , is flagged as and released under a license.

diff --git a/templates/content-twat_episode.tpl.html b/templates/content-twat_episode.tpl.html index 93ebbd8..f05ef98 100644 --- a/templates/content-twat_episode.tpl.html +++ b/templates/content-twat_episode.tpl.html @@ -53,7 +53,7 @@

-Hosted by on is flagged as and is released under a license.
+Hosted by on , is flagged as and is released under a license.

diff --git a/templates/shared-episode-summary.tpl.html b/templates/shared-episode-summary.tpl.html index 3130ef4..432ba08 100644 --- a/templates/shared-episode-summary.tpl.html +++ b/templates/shared-episode-summary.tpl.html @@ -35,7 +35,7 @@ or - . + , . . .
-- 2.43.5 From c32a34372879b7c06c5fcb5cdfb1a0d7f1ec24e8 Mon Sep 17 00:00:00 2001 From: Roan Horning Date: Sun, 27 Oct 2024 12:56:47 -0400 Subject: [PATCH 3/5] Simplify MACRO day_from_date --- templates/shared-utils.tpl.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/shared-utils.tpl.html b/templates/shared-utils.tpl.html index bef556e..2021124 100644 --- a/templates/shared-utils.tpl.html +++ b/templates/shared-utils.tpl.html @@ -51,7 +51,7 @@ - + -- 2.43.5 From 27caa97c7dc8f2973a50446870e8104f9e3bb2bb Mon Sep 17 00:00:00 2001 From: Roan Horning Date: Sun, 27 Oct 2024 13:01:14 -0400 Subject: [PATCH 4/5] Add MACRO day_and_date Formats a string date to , --- templates/shared-utils.tpl.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/templates/shared-utils.tpl.html b/templates/shared-utils.tpl.html index 2021124..0d6303b 100644 --- a/templates/shared-utils.tpl.html +++ b/templates/shared-utils.tpl.html @@ -54,6 +54,10 @@ + +, + + -- 2.43.5 From c1078d9b9ca795190a7c2f732fd68162ce5f5b32 Mon Sep 17 00:00:00 2001 From: Roan Horning Date: Sun, 27 Oct 2024 13:04:19 -0400 Subject: [PATCH 5/5] Replace day_from_date MACRO with day_and_date MACRO Refactor content templates to use day_and_date MACRO --- templates/content-episode.tpl.html | 2 +- templates/content-index.tpl.html | 2 +- templates/content-twat_episode.tpl.html | 2 +- templates/shared-episode-summary.tpl.html | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/content-episode.tpl.html b/templates/content-episode.tpl.html index bda26f4..fab096b 100644 --- a/templates/content-episode.tpl.html +++ b/templates/content-episode.tpl.html @@ -17,7 +17,7 @@

-Hosted by on , is flagged as and is released under a license.
+Hosted by on is flagged as and is released under a license.

diff --git a/templates/content-index.tpl.html b/templates/content-index.tpl.html index 6fecc95..075c154 100644 --- a/templates/content-index.tpl.html +++ b/templates/content-index.tpl.html @@ -55,7 +55,7 @@

hpr ::

- Hosted by on , is flagged as and released under a license.
+ Hosted by on is flagged as and released under a license.

diff --git a/templates/content-twat_episode.tpl.html b/templates/content-twat_episode.tpl.html index f05ef98..426ae29 100644 --- a/templates/content-twat_episode.tpl.html +++ b/templates/content-twat_episode.tpl.html @@ -53,7 +53,7 @@

-Hosted by on , is flagged as and is released under a license.
+Hosted by on is flagged as and is released under a license.

diff --git a/templates/shared-episode-summary.tpl.html b/templates/shared-episode-summary.tpl.html index 432ba08..68ae45e 100644 --- a/templates/shared-episode-summary.tpl.html +++ b/templates/shared-episode-summary.tpl.html @@ -35,7 +35,7 @@ or - , . + . . .
-- 2.43.5