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.

39 lines
1.8 KiB

5 years ago
5 years ago
5 years ago
5 years ago
  1. {{ define "main" }}
  2. <div class="about">
  3. <h1>Latest post</h1>
  4. {{ range first 1 .Site.RegularPages }}
  5. <article class="post h-entry entry contents">
  6. <div class="{{.Type}}" data-post-type="{{.Type }}">
  7. <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>
  8. <div class="post-content">{{ with .Page.Params.Image }}{{ partial "taxonomy/image.html" . }}{{ end }}<h3 class="post-title p-name entry-title">{{ .Title }}</h3>
  9. <aside>
  10. <div class="index_info">
  11. <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>
  12. <i class="fa fa-clock"></i><span class="reading-time">{{ .ReadingTime }}-minute read</span>
  13. </div>
  14. <div class="e-content">{{ .Content }}
  15. {{ if eq .Type "photo"}}
  16. <div class="photos">
  17. {{ range .Page.Params.Photo }}
  18. <a class="u-url" href="{{ . }}"><img class="u-photo thumb" src="{{ replace . "800." "200."}}"/></a>
  19. {{end}}
  20. </div>
  21. {{end}}
  22. </div>
  23. <div class="index-post-footer">
  24. <div class="info">
  25. {{ with .Page.Params.Blog }}{{ partial "taxonomy/blog.html" . }}{{ end }}
  26. {{ with .Page.Params.Categories }}{{ partial "taxonomy/categories.html" . }}{{ end }}
  27. {{ with .Page.Params.Tags }}{{ partial "taxonomy/tags.html" . }}{{ end }}
  28. </div>
  29. </div>
  30. </aside></div>
  31. </div>
  32. <a href="https://brid.gy/publish/mastodon"></a>
  33. </article>
  34. {{ end }}
  35. </div>
  36. {{ end }}