github.com/mweagle/Sparta@v1.15.0/docs_source/themes/hugo-theme-learn/layouts/_default/list.html (about)

     1  {{ partial "header.html" . }}
     2  
     3  {{ if eq .Kind "section" }}
     4  	{{ .Content }}
     5  {{end}}
     6  
     7  {{ if or (eq .Kind "taxonomy") (eq .Kind "taxonomyTerm") }}
     8  <ul>
     9  	{{ range .Pages }}
    10  		<li><a href="{{.RelPermalink}}">{{.Title}}</a></li>
    11  	{{ end }}
    12  </ul>
    13  {{end}}
    14  
    15  <footer class=" footline" >
    16  	{{with .Params.LastModifierDisplayName}}
    17  	    <i class='fas fa-user'></i> <a href="mailto:{{ $.Params.LastModifierEmail }}">{{ . }}</a> {{with $.Date}} <i class='fas fa-calendar'></i> {{ .Format "02/01/2006" }}{{end}}
    18  	    </div>
    19  	{{end}}
    20  </footer>
    21  
    22  {{ partial "footer.html" . }}