mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2025-08-10 09:21:36 -05:00
I think this may have changed in Hugo's history, but now description and summary are considered different things. The description is what goes in metadata (and what search engines see), while the summary is the blurb about the article that should be displayed when rendering a summary (what I should've been using always here).
42 lines
1.2 KiB
HTML
42 lines
1.2 KiB
HTML
{{ define "main" }}
|
|
<div class="page-title">
|
|
<h1>
|
|
{{ if eq .Data.Singular "tag" }}
|
|
{{ partial "icon.html" "tag" }}
|
|
{{ else if eq .Data.Singular "category" }}
|
|
{{ partial "icon.html" "folder" }}
|
|
{{ else }}
|
|
{{ partial "icon.html" "filter" }}
|
|
{{ end }}
|
|
|
|
{{ .Title | markdownify }}
|
|
</h1>
|
|
</div>
|
|
|
|
{{ with .Content }}
|
|
{{ . }}
|
|
{{ end }}
|
|
|
|
<div class="taxonomy-list">
|
|
{{ with .Data.Terms.Alphabetical }}
|
|
{{ range . }}
|
|
{{ with .Page }}
|
|
<article class="taxonomy-term">
|
|
<div class="taxonomy-list-left">
|
|
<a href="{{ .Permalink }}">
|
|
<p>{{ .Title | markdownify }}</p>
|
|
</a>
|
|
{{ partial "page-metadata/taxonomy.html" . }}
|
|
</div>
|
|
{{ .Summary }}
|
|
</article>
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ else }}
|
|
<div>
|
|
{{ i18n "no_posts" }}
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|