hugo-tufte/layouts/partials/content.header.html

38 lines
879 B
HTML
Raw Normal View History

<section>
2023-04-15 01:36:29 +02:00
<h1 class="content-title">
{{- if .IsNode -}}
{{- .Title -}}
{{- else -}}
{{- .Title -}}{{- if .Draft -}} :: Draft {{- end -}}
{{- end -}}
2023-04-15 01:36:29 +02:00
</h1>
{{- if .IsPage -}}
{{- if .Params.subtitle -}}
<p class=subtitle>{{ .Params.subtitle }}</p>
{{- end -}}
2023-04-15 01:36:29 +02:00
{{- if or (eq .Type "post") (.Params.meta) -}}
2023-04-15 01:36:29 +02:00
<span class="content-meta">
{{- if .Params.author -}}
2023-04-17 18:20:14 +02:00
<p class="author">{{ .Params.author }}</p>
{{- end -}}
2023-04-15 01:36:29 +02:00
{{- if not .Params.hidedate -}}
2023-04-17 18:20:14 +02:00
<p class="date">{{ .Date.Format "2006-01-02" }}</p>
{{- end -}}
2023-04-15 01:36:29 +02:00
{{- if not .Params.hidereadtime -}}
<span>{{ .ReadingTime }} min read&nbsp;</span>
{{- end -}}
2023-04-15 01:36:29 +02:00
{{- range .Params.categories -}}
<a href="{{ "/categories/" | absURL }}{{ . | urlize }}">{{ . }}</a>&nbsp;
{{- end -}}
2023-04-15 01:36:29 +02:00
</span>
{{- end -}}
{{- end -}}
2023-04-15 01:36:29 +02:00
</section>