aboutsummaryrefslogtreecommitdiff
path: root/html/main/blog.tmpl.html
diff options
context:
space:
mode:
authorthinkpadmaster <a.scerba02@gmail.com>2023-08-28 09:49:47 -0500
committerAlex Scerba <alex@scerba.org>2024-10-29 13:19:57 -0400
commit027a96c9c8ecd9452a21f0173a15860d03a3f339 (patch)
tree141049f49461352f8ff6cd107404e97c69dd70ac /html/main/blog.tmpl.html
parentf348728153f8c9199536a5c18c2f49f77f54aba5 (diff)
Reflect new syntax
Diffstat (limited to 'html/main/blog.tmpl.html')
-rw-r--r--html/main/blog.tmpl.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/html/main/blog.tmpl.html b/html/main/blog.tmpl.html
index 9017066..055d2ec 100644
--- a/html/main/blog.tmpl.html
+++ b/html/main/blog.tmpl.html
@@ -1,13 +1,14 @@
{{ define "title" }}Blog{{end}}
{{ define "description" }}Site blog featuring personal and project updates as well as anything random I want to share.{{end}}
{{ define "keywords" }}blog{{end}}
+{{ define "canonical" }}/blog{{end}}
{{ define "main" }}
<h1>alexscerba.com<wbr>/blog</h1>
<section class="postContent">
<h2>Entries</h2>
-{{ range .Contents }}
+{{ range .Posts.Contents}}
<p>- <a href="/blog/{{ .FileName }}">{{ .Title }}</a></p>
{{ end }}
</section>