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