forked from mirrors/hugo-tufte
Use content.header partial for pages and nodes.
This commit is contained in:
parent
b9f669e1b4
commit
8dafca7e01
1 changed files with 9 additions and 4 deletions
|
@ -1,9 +1,12 @@
|
|||
<section>
|
||||
<h1 class="content-title">
|
||||
<a href="{{ .RelPermalink }}">
|
||||
{{ .Title }}
|
||||
{{ if .Draft }} :: Draft {{end}}
|
||||
</a>
|
||||
{{ 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">
|
||||
|
@ -32,3 +35,5 @@
|
|||
{{ end }}
|
||||
</span>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</section>
|
||||
|
|
Loading…
Reference in a new issue