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.

30 lines
1.8 KiB

  1. {{ range sort . "published" "asc" }}
  2. {{ if eq (index . "wm-property") "mention" }}
  3. <section class="mention interaction"><span class="remote_profile"><a href="{{ .author.url }}"><img src="{{ .author.photo }}" /></a></span><section class="intcontent"><span class="intactivity"><a href="{{ .author.url }}">{{ .author.name }}</a> mentioned this post in <a href="{{ .url }}">the post {{ .title }}</a></span>
  4. {{ if .content.html }}
  5. {{ .content.html | safeHTML }}
  6. {{ else }}
  7. <p>{{ .content.text | safeHTML }}</p>
  8. {{ end }}
  9. {{ if not (eq .published nil)}}
  10. <time>{{ dateFormat "02/01/2006 15:04 GMT" ( time .published ) }}</time></section></section>
  11. {{ else }}
  12. <time>{{ dateFormat "02/01/2006 15:04 GMT" ( time (index . "wm-received") ) }}</time></section></section>
  13. {{ end }}
  14. {{ end }}
  15. {{ if eq (index . "wm-property") "in-reply-to" }}
  16. <section class="reply interaction"><span class="remote_profile"><a href="{{ .author.url }}"><img src="{{ .author.photo }}" /></a></span><section class="intcontent"><span class="intactivity"><a href="{{ .author.url }}">{{ .author.name }}</a> replied to this post <a href="{{ .url }}">here</a><br/></span>
  17. {{ if .content.html }}
  18. {{ .content.html | safeHTML }}
  19. {{ else }}
  20. <p>{{ .content.text | safeHTML }}</p>
  21. {{ end }}
  22. {{ if not (eq .published nil) }}
  23. <time>{{ dateFormat "02/01/2006 15:04 GMT" ( time .published ) }}</time></section></section>
  24. {{ else }}
  25. <time>{{ dateFormat "02/01/2006 15:04 GMT" ( time (index . "wm-received") ) }}</time></section></section>
  26. {{ end }}{{ end }}
  27. {{ if eq (index . "wm-property") "bookmark" }}
  28. <section class="bookmark interaction"><a href="{{ .author.url }}"><img class="remote_profile" src="{{ .author.photo }}" /></a><a href="{{ .author.url }}">{{ .author.name }}</a> bookmarked this post</section>
  29. {{ end }}
  30. {{ end }}