jk.nipponalba.scot website https://jk.nipponalba.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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

44 lines
2.1 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. {{ define "main" }}
  2. {{ if not (eq .Type "response")}}
  3. <article class="post h-entry entry contents">
  4. <div class="{{.Type}}" data-post-type="{{.Type }}"><div class="p-author author" style="display:none;"><a rel="author" class="p-name u-url u-uid" rel="me" href="https://jk.nipponalba.scot">{{ .Site.Params.Title }}</a><img class="u-photo" src="/images/profile.jpg" /></div>
  5. <div class="post-content">{{ with .Page.Params.Image }}{{ partial "taxonomy/image.html" . }}{{ end }}<h3 class="post-title p-name entry-title">{{ .Title }}</h3>
  6. <aside>
  7. {{ if eq .Type "article" }}<div class="info">
  8. <i class="fa fa-sun"></i><a class="u-url" href="{{ .RelPermalink }}"><span class="date"><time class="dt-published" datetime="{{ .Date.Format "2 Jan 2006 15:04 GMT" }}">{{ .Date.Format "Mon, Jan 2, 2006" }}</time></span></a>
  9. <i class="fa fa-clock"></i><span class="reading-time">{{ .ReadingTime }}-minute read</span>
  10. </div>{{end}}
  11. <div class="e-content">{{ .Content }}
  12. {{ if eq .Type "photo"}}
  13. <div class="photos">
  14. {{ range .Page.Params.Photo }}
  15. <a class="u-url" href="{{ . }}"><img class="u-photo thumb" src="{{ replace . "800." "200."}}"/></a>
  16. {{end}}
  17. </div>
  18. {{end}}
  19. </div>
  20. <div class="post-footer">
  21. {{ if not (eq .Type "article")}}<a class="u-url" href="{{ .RelPermalink }}"><span class="date"><time class="dt-published" datetime="{{ .Date.Format "2 Jan 2006 15:04 GMT" }}">{{ .Date.Format "Mon, Jan 2, 2006" }}</time></span>{{end}}
  22. <div class="info">
  23. {{ with .Page.Params.Blog }}{{ partial "taxonomy/blog.html" . }}{{ end }}
  24. {{ with .Page.Params.Categories }}{{ partial "taxonomy/categories.html" . }}{{ end }}
  25. {{ with .Page.Params.Tags }}{{ partial "taxonomy/tags.html" . }}{{ end }}
  26. </div>
  27. </div>
  28. <a href="https://brid.gy/publish/mastodon"></a>
  29. {{ if eq .Type "article"}}
  30. {{ if .Site.DisqusShortname -}}
  31. <div id="fb_comments_container">
  32. <h2>Comments</h2>
  33. {{ template "_internal/disqus.html" . }}
  34. </div>
  35. {{- end }}
  36. {{ end }}
  37. </aside></div>
  38. </div>
  39. </article>{{end}}
  40. {{end}}