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
551 B

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