forked from mirrors/hugo-tufte
39 lines
871 B
HTML
39 lines
871 B
HTML
<section>
|
|
|
|
<h1 class="content-title">
|
|
{{ if .IsNode }}
|
|
{{ .Title }}
|
|
{{ else }}
|
|
{{ .Title }}{{ if .Draft }} :: Draft {{end}}
|
|
{{ end }}
|
|
</h1>
|
|
|
|
{{ if .IsPage }}
|
|
{{ if .Params.subtitle }}
|
|
<h3 class=subtitle>{{ .Params.subtitle }}</h3>
|
|
{{ end }}
|
|
|
|
{{ if or (eq .Type "post") (.Params.meta) }}
|
|
<span class="content-meta">
|
|
{{ if .Params.author }}
|
|
<p class="author">{{ .Params.author }}</p>
|
|
{{ end }}
|
|
|
|
{{ if not .Params.hidedate }}
|
|
<p class="date">{{ .Date.Format "2006-01-02" }}</p>
|
|
{{end }}
|
|
|
|
{{ if not .Params.hidereadtime }}
|
|
{{ .ReadingTime }} min read
|
|
{{ end }}
|
|
|
|
{{ if .Params.categories }}
|
|
{{ range .Params.categories }}
|
|
<a href="{{ "/categories/" | absURL }}{{ . | urlize }}">{{ . }}</a>
|
|
{{ end }}
|
|
{{ end }}
|
|
</span>
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
</section>
|