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.

32 lines
1.3 KiB

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. <section class="e-content"><section class="e-content p-name">
  9. {{ .Content }}
  10. {{ if eq .Type "photo"}}
  11. <section class="photogrid">
  12. {{ range .Page.Params.Photo }}
  13. {{ if isset . "value" }}
  14. <a href="{{ .value }}"><img class="u-photo" src="{{ .value }}" alt="{{ .alt }}"/></a>
  15. {{ else }}
  16. <a href="{{ . }}"><img class="u-photo" src="{{ . }}" alt=" Trying to fix"/></a>
  17. {{end}}
  18. {{end}}
  19. </section>
  20. {{end}}
  21. {{ if eq .Type "article" }}<section class="p-summary" style="display:none">
  22. {{ .Page.Params.summary }}<br/>
  23. </section>
  24. {{ end }}<br/>
  25. </section>
  26. <section class="info">
  27. <span class="categories_span">{{ with .Page.Params.category }}Categories: {{ partial "taxonomy/categories.html" . }}{{ end }}</span><br/>
  28. </section></section>
  29. </article>
  30. {{end}}