source for sakino.kelbie.scot
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

21 lines
1.0 KiB

{{ define "main" }}
<section class="archive">
<section class="archive-listing">
<span class="list-title">{{ humanize .Name }}<a href="{{ .Permalink }}index.xml"><i class="fa fa-rss fa-2x fa-fw" aria-hidden="true" title="{{ .Name }} RSS feed"></i></a></span>
<ul class="listing">
{{ range .Pages }}
<li class="post h-feed contents">
{{ if eq .Type "note"}}
<span class="archive_content h-entry entry">
<span class="info-date"><a href="{{ .Permalink }}" class="u-url"><time class="dt-published" datetime="{{ .Date.Format "2 Jan 2006 15:04 GMT" }}">{{ .Date.Format "2 Jan 2006 15:04 GMT" }}</time></a></span>
<section class="p-name e-content">{{ .Content }}</section>
<section class="info">
<span class="categories_span">{{ with .Page.Params.category }}Categories: {{ partial "taxonomy/categories.html" . }}{{ end }}</span><br/>
</section>
</span>{{end}}
</li>
{{ end }}</ul>
</section>
</section>
{{ end }}