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
972 B

4 years ago
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. <section class="e-content">{{ .Content }}
  12. </section>
  13. <section class="info">
  14. <span class="categories_span">{{ with .Page.Params.category }}Categories: {{ partial "taxonomy/categories.html" . }}{{ end }}</span><br/>
  15. </section>
  16. </article> {{ end }}
  17. </section>
  18. </section>
  19. </section>
  20. {{ end }}