mirror of
https://github.com/loikein/hugo-tufte.git
synced 2024-11-15 12:56:57 +01:00
42 lines
No EOL
1.2 KiB
HTML
42 lines
No EOL
1.2 KiB
HTML
<section>
|
|
|
|
<h1 class="content-title">
|
|
{{ if .IsNode }}
|
|
<a href="{{ .Permalink }}">{{ .Title}}</a>
|
|
{{ else }}
|
|
<a href="{{ .RelPermalink }}">{{ .Title }}{{ if .Draft }} :: Draft {{end}}</a>
|
|
{{ end }}
|
|
</h1>
|
|
{{ if .IsPage }}
|
|
{{ if .Params.subtitle }}
|
|
<p class=subtitle>{{ .Params.subtitle }}</p>
|
|
{{ end }}
|
|
{{ if or (eq .Type "post") (.Params.meta) }}
|
|
<span class="content-meta">
|
|
{{ if .Params.author }}
|
|
<i class="fa fa-user"> </i><span class="author">
|
|
{{ .Params.author }}</span> <br>
|
|
{{ end }}
|
|
|
|
|
|
{{ if not .Params.hidedate }}
|
|
<i class="fa fa-calendar"></i>
|
|
{{ .Date.Format "Jan 2, 2006" }}
|
|
{{end }}
|
|
|
|
{{ if not .Params.hidereadtime }}
|
|
<i class="fa fa-clock-o"></i>
|
|
{{ .ReadingTime }} min read
|
|
{{ end }}
|
|
|
|
{{ if .Params.categories }}
|
|
<br>
|
|
<i class="fa fa-tags"> </i>
|
|
{{ range .Params.categories }}
|
|
<a href="{{ "/categories/" | absURL }}{{ . | urlize }}">{{ . }}</a>
|
|
{{ end }}
|
|
{{ end }}
|
|
</span>
|
|
{{ end }}
|
|
{{ end }}
|
|
</section> |