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.

19 lines
979 B

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;">{{ .Author }}</a>
  7. <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>
  9. <div class="info">
  10. <i class="fa fa-sun"></i><span class="date"><time class="dt-published" datetime="{{ .Date.Format "2 Jan 2006 15:04 GMT" }}">{{ .Date.Format "Mon, Jan 2, 2006" }}</time></span>
  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. </article>
  15. <a href="https://brid.gy/publish/mastodon"></a>
  16. {{ end }}
  17. </div>
  18. {{ end }}