A lot of clean up

This commit is contained in:
Dan 2025-12-31 12:50:21 +00:00
parent d89744f46f
commit 931fa141dc
62 changed files with 447 additions and 993 deletions

View file

@ -1,6 +1,6 @@
<div class="blog-post-card{{ if not (in .Params.tags "weekly") }} non-weekly{{ end }}">
<div class="blog-post-card{{ if not (in .Params.tags "weeknote") }} non-weekly{{ end }}">
<h1 class="blog-title">
{{ if in .Params.tags "weekly" }}
{{ if in .Params.tags "weeknote" }}
{{ .Title }}
{{ else }}
<a href="{{ .Permalink }}">
@ -8,7 +8,7 @@
</a>
{{ end }}
{{ if .Date }}
<span class="blog-date">{{ .Date.Format "02/01/2006" }}</span>
<span class="blog-date">{{ .Date.Format "02-01-2006" }}</span>
{{ end }}
</h1>
{{ if .Params.tags }}
@ -18,7 +18,7 @@
{{ end }}
</div>
{{ end }}
{{ if in .Params.tags "weekly" }}
{{ if in .Params.tags "weeknote" }}
<div class="blog-summary">
{{ .Content }}
</div>