From ac5b114dc3a8c53bc218019535cd3fe97ab5a912 Mon Sep 17 00:00:00 2001
From: Mitja Felicijan
Date: Tue, 11 Jul 2023 13:40:51 +0200
Subject: Added note, post details in the posts
---
templates/base.html | 13 +++++++++----
templates/note.html | 2 +-
templates/post.html | 2 +-
3 files changed, 11 insertions(+), 6 deletions(-)
diff --git a/templates/base.html b/templates/base.html
index 9af9e27..eb71809 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -34,6 +34,10 @@
margin-block-start: 3rem;
}
+ cap {
+ text-transform: capitalize;
+ }
+
table {
max-width: 100%;
border-collapse: separate;
@@ -141,15 +145,16 @@
- This website does not track you. Content is made available under
+
This website does not track you. Content is made available under
the CC BY 4.0 license unless specified
otherwise. Blog feed is available as
{{ .Page.Title }}
- {{ .Page.Created.Format "Jan 2, 2006" }}
+ {{ .Page.Type }}, {{ .Page.Created.Format "Jan 2, 2006" }}
{{ .Page.HTML }}
diff --git a/templates/post.html b/templates/post.html
index 28ffad2..2518d1a 100644
--- a/templates/post.html
+++ b/templates/post.html
@@ -6,7 +6,7 @@
{{ define "content" }}
{{ .Page.Title }}
-
{{ .Page.Created.Format "Jan 2, 2006" }}
+
{{ .Page.Type }}, {{ .Page.Created.Format "Jan 2, 2006" }}
{{ .Page.HTML }}
--
cgit v1.2.3