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.

29 lines
1.7 KiB

4 years ago
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. <span class="headline"><h1>{{ range .Params.category }}
  12. {{ if eq . "1"}}<h1><i class="fa fa-television" aria-hidden="true" title="Documentary note"></i> Documentary note</h1>{{ end }}
  13. {{ if eq . "2"}}<h1><i class="fa fa-book" aria-hidden="true" title="Reading note"></i> Reading note</h1>{{ end }}
  14. {{ if eq . "3"}}<h1><i class="fa fa-pencil-square-o" aria-hidden="true" title="TODO note"></i> TODO note</h1>{{ end }}
  15. {{ if eq . "4"}}Test{{ end }}
  16. {{ if eq . "5"}}Test{{ end }}
  17. {{ if eq . "6"}}Test{{ end }}
  18. {{ end }}</h1></span>
  19. <section class="p-name e-content">{{ .Content }}</section>
  20. <section class="info">
  21. <span class="categories_span">{{ with .Page.Params.category }}Categories: {{ partial "taxonomy/categories.html" . }}{{ end }}</span><br/>
  22. </section>
  23. </span>{{end}}
  24. </li>
  25. {{ end }}</ul>
  26. </section>
  27. </section>
  28. {{ end }}