UNPKG

@gotpop/multitool

Version:

MultiTool is a CLI tool to assist in quickly setting up a Hugo project for NetlifyCMS

19 lines (14 loc) 448 B
{{ define "main" }} <main role="main"> <h1>Tag: {{ .Title }}</h1> {{ .Content }} <ul class="list-pages"> {{ range .Site.RegularPages }} <li class="lh-copy"> <a href="{{ .Permalink | relURL }}" class="link f5">{{ .Title }}</a> - <time>{{ .Date.Format "January 02, 2006" }}</time> </li> {{ end }} </ul> {{ $paginator := .Paginate ( where .Site.RegularPages "Type" "post" ) 10 }} </main> {{ end }}