From 55df7b5161bdc86e037a0c03646a75e55f3e85ec Mon Sep 17 00:00:00 2001 From: Craig Oates Date: Sat, 15 Oct 2022 21:17:13 +0100 Subject: [PATCH] simplify templates/archive-entry.html template (remove entry dates). --- templates/archive-entry.html | 28 ++++++++-------------------- 1 file changed, 8 insertions(+), 20 deletions(-) diff --git a/templates/archive-entry.html b/templates/archive-entry.html index 26fbdff..429fce4 100644 --- a/templates/archive-entry.html +++ b/templates/archive-entry.html @@ -2,25 +2,13 @@ {% block title %}{{db-data.title}}{% endblock %} {% block content %}
-
-
- {{db-data.title}} -

{{db-data.title}}

-
-

- Added to Archive: - {{ db-data.created-at | date: - ((:day 2) "/" (:month 2) "/" (:year 4)) }} - • - Last Archive Update: - {{ db-data.updated-at | date: - ((:day 2) "/" (:month 2) "/" (:year 4)) }} -

-

{{ db-data.keywords | replace:, | with:" • " }}

-
-
- {{data | safe}} -
+
+

{{db-data.title}}

+

+ Published: {{db-data.month}} {{db-data.year}} +

+

Keywords: {{ db-data.keywords | replace:, | with:" • " }}

+ {{data | safe}} +
{% endblock %}