forked from mirrors/hugo-tufte
31 lines
741 B
HTML
31 lines
741 B
HTML
<section>
|
|
<h1 class="content-title">
|
|
{{- .Title -}}{{- if .Draft -}} :: Draft {{- end -}}
|
|
</h1>
|
|
|
|
{{- if .IsPage -}}
|
|
{{- if .Params.subtitle -}}
|
|
<p class=subtitle>{{ .Params.subtitle }}</p>
|
|
{{- end -}}
|
|
|
|
{{- if .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 -}}
|
|
<span>{{ .ReadingTime }} min read </span>
|
|
{{- end -}}
|
|
|
|
{{- range .Params.tags -}}
|
|
<a href="{{ "/tags/" | absURL }}{{ . | urlize }}">{{ . }}</a>
|
|
{{- end -}}
|
|
</span>
|
|
{{- end -}}
|
|
{{- end -}}
|
|
</section>
|