now.html (262B)
1 {{ define "main" }} 2 <h1>{{ .Title }}</h1> 3 {{ partial "metadata.html" . }} 4 <!-- <br><br> --> 5 <article> 6 {{ if ge .Lastmod.Unix (sub time.Now.Unix .Site.Params.now_timeout) }} 7 {{ .Content }} 8 {{ else }} 9 <p>{{ .Param "alternate" }}</p> 10 {{ end }} 11 </article> 12 {{ end }}