diff options
author | Alex Scerba <alex@scerba.org> | 2025-02-11 15:05:15 -0500 |
---|---|---|
committer | Alex Scerba <alex@scerba.org> | 2025-02-11 15:05:15 -0500 |
commit | f04fb5cf14385581c2c0d0efd204d2afd2139221 (patch) | |
tree | 5373990013b16bbc6215110cda3278462820b841 /html | |
parent | 80e44b3e15dc1f571b959c10034d55322cbd03c4 (diff) |
Remove redundant data type
Diffstat (limited to 'html')
-rw-r--r-- | html/blog2.tmpl.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/html/blog2.tmpl.html b/html/blog2.tmpl.html index 2a57226..f6b0215 100644 --- a/html/blog2.tmpl.html +++ b/html/blog2.tmpl.html @@ -21,7 +21,7 @@ <p>A collection of thoughts, life updates, projects, and images.</p> </div> <div class="entries"> -{{ range .Posts.Collection }} +{{ range .Posts }} <p><a href="/blog/{{ .File }}"><b>{{ .Date }}</b> | {{ .Title }}</a></p> {{ end }} </div> @@ -31,7 +31,7 @@ <p>Works from my last revision of scerba.org</p> </div> <div class="entries"> -{{ range .Archive.Collection }} +{{ range .Archive }} <p><a href="/archive/{{ .File }}"><b>{{ .Date }}</b> | {{ .Title }}</a></p> {{ end }} </div> |