Updated pre-commit to check for dead links, updated projects pages and new post

This commit is contained in:
2025-10-05 22:33:54 -06:00
parent 57c931c7cf
commit a72883a13f
10 changed files with 259 additions and 24 deletions
+25
View File
@@ -0,0 +1,25 @@
<div class="post container">
<div class="post-header-section">
<h1>{{ .Title | markdownify }}</h1>
{{ if ne .File.Path "projects.md" }}
<p class="post-date">
{{ if eq .Date .Lastmod }}
{{ dateFormat (or .Site.Params.dateFormat "January 2, 2006") .Date}}
{{ end }}
{{ if lt .Date .Lastmod }}
Updated {{ dateFormat (or .Site.Params.dateFormat "January 2, 2006") .Lastmod }}
{{ end }}
</p>
{{ end }}
</div>
<div class="post-content">
{{ .Content }}
</div>
<!-- Back to top button -->
{{ if .Site.Params.ShowBackToTopButton }}
{{ partial "back-to-top.html" . }}
{{ end }}
</div>