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.
16 lines
438 B
16 lines
438 B
{{ define "main" }}
|
|
|
|
<div class="about">
|
|
<h1>Latest post</h1>
|
|
{{ range first 1 .Site.RegularPages }}
|
|
{{ if eq .Type "post"}}
|
|
<article class="h-entry entry">
|
|
<h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
|
|
<h4 class="decription"><a href="{{ .RelPermalink }}">{{ .Description }}</a></h4>
|
|
{{ .Content }}
|
|
</article>
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
|
|
{{ end }}
|