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

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