blob: 7a85a056078bfcaa288c1920e54a08bbb446cd73 (
plain) (
tree)
|
|
{{ define "main" }}
<div>
<h1>{{ .Title }}</h1>
<div id="meta">
{{- $pub := .Date.Format "Jan 2, 2006" -}}
{{- $mod := "" -}}
{{- if (not .GitInfo) }}
{{- $mod = .Lastmod.Format "Jan 2, 2006" -}}
{{ else }}
{{- $mod = .Page.GitInfo.CommitDate.Format "Jan 2, 2006" -}}
{{ end -}}
{{ if eq $pub $mod }}
<div id="meta_date">published {{ $pub }}</div>
{{ else }}
<div id="meta_date">published {{ $pub }} - last modified {{ $mod }}</div>
{{ end }}
{{ if .Params.tags }}
<div>
{{ if eq (len .Params.tags) 1 }}
tag:
{{ else }}
tags:
{{ end }}
{{ range $idx, $tag := .Params.tags }}
<span id="meta_tags"><a href="/tags/{{ $tag | urlize }}/">{{ $tag }}</a></span>
{{ end }}
</div>
{{ end }}
</div>
{{ if .Params.toc }}
<div id="toc_small">
<summary>Table of contents</summary>
{{ .TableOfContents }}
</div>
{{ end }}
<article>
{{ .Content }}
</article>
</div>
{{ if .Params.toc }}
<div id="toc">
<strong>Table of contents</strong>
{{ .TableOfContents }}
</div>
{{ end }}
{{ end }}
|