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.

23 lines
1.1 KiB

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. <div class="h-card p-author" style="display: none;">
  7. <a rel="author" class= "p-name u-url" href="https://jk.nipponalba.scot">J K 🇯🇵🏴󠁧󠁢󠁳󠁣󠁴󠁿</a>
  8. <img class="u-photo" src="/images/profile.jpg" />
  9. </div>
  10. <h3 class="post-title p-name entry-title"><a class="u-url" href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
  11. <h4 class="decription"><a href="{{ .RelPermalink }}">{{ .Description }}</a></h4>
  12. <div class="info">
  13. <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>
  14. <i class="fa fa-clock"></i><span class="reading-time">{{ .ReadingTime }}-minute read</span>
  15. </div>
  16. <div class="e-content">{{ .Content }}</div>
  17. </article>
  18. {{ end }}
  19. </div>
  20. {{ end }}