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.

26 lines
1.5 KiB

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="h-entry entry">
  6. <a rel="author" class="p-author h-card" href="{{ .RelPermalink }}" style="display:none;"><img class="u-photo" src="/images/profile.jpg" />{{ .Site.Params.Title }}</a>
  7. {{if eq .Type "article"}}<h3 class="post-title p-name entry-title"><a class="u-url" href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
  8. <h4 class="decription"><a href="{{ .RelPermalink }}">{{ .Description }}</a></h4>{{end}}
  9. <div class="info">
  10. <i class="fa fa-sun"></i><a class="u-url" href="{{ .RelPermalink }}"><span class="date"><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>
  11. <i class="fa fa-clock"></i><span class="reading-time">{{ .ReadingTime }}-minute read</span>
  12. </div>
  13. <div class="e-content">{{ .Content }}</div>
  14. <div class="post-footer">
  15. <div class="info">
  16. {{ with .Page.Params.Blog }}{{ partial "taxonomy/blog.html" . }}{{ end }}
  17. {{ with .Page.Params.Categories }}{{ partial "taxonomy/categories.html" . }}{{ end }}
  18. {{ with .Page.Params.Tags }}{{ partial "taxonomy/tags.html" . }}{{ end }}
  19. </div>
  20. </div>
  21. </article>
  22. <a href="https://brid.gy/publish/mastodon"></a>
  23. {{ end }}
  24. </div>
  25. {{ end }}