From f74ae90e02eb4cb7e5e87af1baa9aaf8930f8ae1 Mon Sep 17 00:00:00 2001 From: Craig Oates Date: Tue, 11 Oct 2022 00:01:36 +0100 Subject: [PATCH] update artchive-entry.html template. Starting to add extra HTML and CSS tags and rules. This is just the start to building out this template. --- templates/archive-entry.html | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/templates/archive-entry.html b/templates/archive-entry.html index dccdf1c..69942e5 100644 --- a/templates/archive-entry.html +++ b/templates/archive-entry.html @@ -1,7 +1,26 @@ {% extends "layouts/default.html" %} {% block title %}{{db-data.title}}{% endblock %} {% block content %} -
- {{data | safe}} -
+
+
+
+ {{db-data.title}} +

{{db-data.title}}

+
+

+ Added to Site: + {{ db-data.created-at | datetime: + ((:day 2) "/" (:month 2) "/" (:year 4) " " (:hour 2) ":" (:min 2)) }} + • + Last Updated: + {{ db-data.updated-at | datetime: + ((:day 2) "/" (:month 2) "/" (:year 4) " " (:hour 2) ":" (:min 2)) }} +

+

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

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