Improve semantics

This commit is contained in:
Amolith 2021-12-18 20:42:36 -05:00
parent f6142d897b
commit 807444f69a
Signed by: Amolith
GPG Key ID: 5548AD9930655715
1 changed files with 10 additions and 10 deletions

View File

@ -11,11 +11,11 @@
{{ if eq $title "Posts" }}
<div class="categories">
<h2>Categories</h2>
{{range ($.Site.GetPage "taxonomyTerm" "categories").Pages }}
<a class="button" href="{{.Permalink}}">
<p>{{.Title}}</p>
</a>
{{end}}
<p>
{{ range ($.Site.GetPage "taxonomyTerm" "categories").Pages }}
<a class="button" href="{{.Permalink}}">{{.Title}}</a>
{{- end }}
</p>
</div>
{{ end }}
@ -30,11 +30,11 @@
<span class="posts-day">{{ if .Site.Params.dateformShort }}{{ .Date.Format .Site.Params.dateformShort }}{{ else }}{{ .Date.Format "Jan 02"}}{{ end }}</span>
</a>
<p>{{ .Summary | truncate 140 }}</p>
{{ range (.GetTerms "tags") }}
<a class="button" href="{{.Permalink}}">
<p>{{.Title}}</p>
</a>
{{ end }}
<p>
{{- range (.GetTerms "tags") }}
<a class="button" href="{{.Permalink}}">{{.Title}}</a>
{{- end }}
</p>
</li>
{{- end }}
</ul>