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.
 
 
 

20 lines
551 B

{{ define "main" }}
<div class="about animated fadeInDown">
{{ range first 10 .Site.RegularPages }}
{{ if eq .Type "post"}}
<div>
<h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
{{ .Summary }}
</div>
{{ if .Truncated }}
<!-- This <div> includes a read more link, but only if the summary is truncated... -->
<div>
<a href="{{ .RelPermalink }}">Read More…</a>
</div>
{{ end }}
{{ end }}
{{ end }}
</div>
{{ end }}