diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-11-21 21:26:28 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2023-11-21 21:30:13 +0100 |
commit | d3fb375420ea040a381027b19af33faeea65c473 (patch) | |
tree | 5c82d888a79107203a458966176abe3d257e6920 /templates/index.html | |
parent | cb05b3b7d9b5a6f086e0d348cdce50f54b5ddbf2 (diff) | |
download | blog-d3fb375420ea040a381027b19af33faeea65c473.tar.gz blog-d3fb375420ea040a381027b19af33faeea65c473.zip |
change date formatting and add date to post titles
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/index.html b/templates/index.html index 8187404..5ea7788 100644 --- a/templates/index.html +++ b/templates/index.html @@ -32,7 +32,7 @@ <a itemprob="url" href="{{ page.permalink | safe }}">{{ page.title }}</a> </h2> <span class="extra-notes"> - @{{ page.date | date(format="%F") }} | {{ page.reading_time }} minute read + {{ page.date | date(format="%Y/%m/%d") }} - {{ page.reading_time }} minute read </span> </header> </article> |