UNPKG

nis-hugo-theme

Version:

Hugo theme for Narative Insight (NIS) Hugo-based websites

33 lines (30 loc) 1.01 kB
{{ define "main" }} <article class="article"> <header> <h1>{{ .Title }}</h1> <p>By {{ .Params.Author }}, Posted {{ .Date.Format "January 2, 2006" }} <span class="tags"> in {{ range .Params.tags }} <a class="tag" href="/tags/{{ . | urlize}}">{{ . }}</a> {{ end }} </span> </p> <p>Reading time: {{ math.Round (div (countwords .Content) 200.0) }} minutes</p> </header> <section class="body"> {{ .Content }} </section> <section class="related"> {{ $related := .Site.RegularPages.Related . | first 5 }} {{ with $related }} <h3>Related articles</h3> {{ range .}} <section class="article"> <h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3> <p>{{ .Summary }}</p> </section> {{ end }} {{ end }} </section> </article> {{ end }}