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.

36 lines
1.7 KiB

4 years ago
4 years ago
4 years ago
4 years ago
  1. {{ define "main" }}
  2. <article class="post h-entry entry contents">
  3. <section class="author" style="display:none;">
  4. <a rel="author" class="p-author h-card" rel="me" href="https://sakino.kelbie.scot">{{ .Site.Params.Author }}<img src="/images/profile1.jpg"/></a>
  5. </section>
  6. <section class="post_content">
  7. <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>
  8. <span class="headline">{{ range .Params.category }}
  9. {{ if eq . "1"}}<h1><i class="fa fa-television" aria-hidden="true" title="Documentary note"></i> Documentary note</h1>{{ end }}
  10. {{ if eq . "2"}}<h1><i class="fa fa-book" aria-hidden="true" title="Reading note"></i> Reading note</h1>{{ end }}
  11. {{ if eq . "3"}}<h1><i class="fa fa-pencil-square-o" aria-hidden="true" title="TODO note"></i> TODO note</h1>{{ end }}
  12. {{ if eq . "4"}}Test{{ end }}
  13. {{ if eq . "5"}}Test{{ end }}
  14. {{ if eq . "6"}}Test{{ end }}
  15. {{ end }}</span>
  16. <section class="e-content"><section class="e-content p-name">
  17. {{ .Content }}
  18. {{ if eq .Type "photo"}}
  19. <section class="photogrid">
  20. {{ range .Page.Params.Photo }}
  21. {{ if isset . "value" }}
  22. <a href="{{ .value }}"><img class="u-photo" src="{{ .value }}" alt="{{ .alt }}"/></a>
  23. {{ else }}
  24. <a href="{{ . }}"><img class="u-photo" src="{{ . }}" alt=" Trying to fix"/></a>
  25. {{end}}
  26. {{end}}
  27. </section>
  28. {{end}}
  29. </section>
  30. <br/>
  31. </section>
  32. <section class="info">
  33. <span class="categories_span">{{ with .Page.Params.category }}Categories: {{ partial "taxonomy/categories.html" . }}{{ end }}</span>
  34. </section></section>
  35. </article>
  36. {{end}}