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.

16 lines
438 B

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. {{ if eq .Type "post"}}
  6. <article class="h-entry entry">
  7. <h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
  8. <h4 class="decription"><a href="{{ .RelPermalink }}">{{ .Description }}</a></h4>
  9. {{ .Content }}
  10. </article>
  11. {{ end }}
  12. {{ end }}
  13. </div>
  14. {{ end }}