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.6 KiB

4 years ago
4 years ago
  1. {{ define "main" }}
  2. <section class="about">
  3. <section class="h-feed">
  4. <section class="latest_note"><h2>Latest notes</h2>
  5. {{ range (first 3 (where .Site.RegularPages "Type" "=" "note")) }}
  6. <article class="index-note h-entry entry">
  7. <section class="author" style="display:none;">
  8. <a rel="author" class="p-author h-card" rel="me" href="https://jon.kelbie.scot">{{ .Site.Params.Author }}<img src="/images/profile1.jpg"/></a>
  9. </section>
  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">{{ 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"}}<h1><i class="fa fa-cutlery" aria-hidden="true" title="TODO note"></i> Cooking note</h1>{{ end }}
  16. {{ if eq . "5"}}Test{{ end }}
  17. {{ if eq . "6"}}Test{{ end }}
  18. {{ end }}</span>
  19. <section class="e-content">{{ .Content }}
  20. </section>
  21. <section class="info">
  22. <span class="categories_span">{{ with .Page.Params.category }}Categories: {{ partial "taxonomy/categories.html" . }}{{ end }}</span><br/>
  23. </section>
  24. </article> {{ end }}
  25. </section>
  26. </section>
  27. </section>
  28. {{ end }}