From c12feff7c614c3cf3331629c233004a804ee2ac6 Mon Sep 17 00:00:00 2001 From: jultty Date: Sat, 7 Dec 2024 11:16:25 -0300 Subject: [PATCH] Add hour, minute and seconds to content dates --- content/notes/notes.md | 2 +- content/posts/self-hosting-patch.md | 2 +- templates/content.html | 2 +- templates/index.html | 6 +++--- templates/link-page.html | 2 +- templates/links.html | 4 ++-- templates/notes.html | 2 +- templates/posts.html | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/content/notes/notes.md b/content/notes/notes.md index c35a51d..1c6fb45 100644 --- a/content/notes/notes.md +++ b/content/notes/notes.md @@ -1,6 +1,6 @@ +++ title = "New notes section" -date = 2024-11-17 +date = 2024-11-17T00:00:01-03:00 +++ This blog now has a Notes section for shorter, less elaborate thoughts, meant to allow more free-form updates as opposed to the longer posts which take much more time to write. diff --git a/content/posts/self-hosting-patch.md b/content/posts/self-hosting-patch.md index 64484ec..6583895 100644 --- a/content/posts/self-hosting-patch.md +++ b/content/posts/self-hosting-patch.md @@ -1,6 +1,6 @@ +++ title = "On self-hosting being a patch" -date = 2024-11-23 +date = 2024-11-23T15:00:00-03:00 +++ Recently the blog post [Self-Hosting Isn't a Solution; It's A Patch](https://matduggan.com/self-hosting-isnt-a-solution-its-a-patch/) landed in my reading list via [Lobsters](https://lobste.rs/s/eisgx0/self_hosting_isn_t_solution_it_s_patch). diff --git a/templates/content.html b/templates/content.html index 26327f1..44b2e74 100644 --- a/templates/content.html +++ b/templates/content.html @@ -3,7 +3,7 @@ {% block content %}

{{ page.title }}

- + {{ page.content | safe }}
{%- endblock content -%} diff --git a/templates/index.html b/templates/index.html index dcedd20..c9d137d 100644 --- a/templates/index.html +++ b/templates/index.html @@ -32,7 +32,7 @@