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.

22 lines
690 B

5 years ago
5 years ago
5 years ago
5 years ago
  1. {{ define "main" }}
  2. <div class="about animated fadeInDown">
  3. <h1>Recent posts</h1>
  4. {{ range first 5 .Site.RegularPages }}
  5. {{ if eq .Type "post"}}
  6. <div>
  7. <h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
  8. <h4 class="decription"><a href="{{ .RelPermalink }}">{{ .Description }}</a></h4>
  9. {{ .Summary }}
  10. </div>
  11. {{ if .Truncated }}
  12. <!-- This <div> includes a read more link, but only if the summary is truncated... -->
  13. <div class="readmore">
  14. <br/><a href="{{ .RelPermalink }}">Read More…</a>
  15. </div>
  16. {{ end }}
  17. {{ end }}
  18. {{ end }}
  19. </div>
  20. {{ end }}