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

4 years ago
4 years ago
4 years ago
  1. {{ define "main" }}
  2. <section class="archive">
  3. <section class="archive-listing">
  4. <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>
  5. <ul class="listing">
  6. {{ range .Pages }}
  7. <li class="post h-feed contents">
  8. {{ if eq .Type "note"}}
  9. <span class="archive_content h-entry entry">
  10. <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>
  11. <section class="p-name e-content">{{ .Content }}</section>
  12. <section class="info">
  13. <span class="categories_span">{{ with .Page.Params.category }}Categories: {{ partial "taxonomy/categories.html" . }}{{ end }}</span><br/>
  14. </section>
  15. </span>{{end}}
  16. </li>
  17. {{ end }}</ul>
  18. </section>
  19. </section>
  20. {{ end }}