the home site for me: also iteration 3 or 4 of my site
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: allow using time in the date

+3 -3
+1 -1
content/blog/2025-02-02_degraded-zpool-proxmox.md
··· 1 1 +++ 2 2 title = "Fixing a degraded zpool on proxmox" 3 - date = 2025-02-03 3 + date = 2025-02-03T10:00:00 4 4 slug = "degraded-zpool-proxmox" 5 5 description = "replacing a failed drive in a proxmox zpool" 6 6
+1 -1
templates/blog-page.html
··· 1 1 {% extends "base.html" %} {% block content %} 2 2 <div><a href="..">..</a>/<span class="accent-data">{{ page.slug }}</span></div> 3 3 <time datetime="{{ page.date }}" 4 - >Published on: <span class="accent-data">{{ page.date }}</span></time 4 + >Published on: <span class="accent-data">{{ page.date | split(pat="T") | first }}</span></time 5 5 > 6 6 {% if config.extra.author and config.extra.display_author == true %} 7 7 <address rel="author">
+1 -1
templates/blog.html
··· 11 11 {% for page in section.pages %} {% if "archival" not in page.taxonomies.tags 12 12 %} 13 13 <li> 14 - {{ page.date }} &mdash; 14 + {{ page.date | split(pat="T") | first }} &mdash; 15 15 <a href="{{ page.permalink | safe }}">{{ page.title }}</a> 16 16 </li> 17 17 {% endif %} {% endfor %}