Use content.header partial for pages and nodes.

This commit is contained in:
Shawn O'Hare 2016-01-14 20:40:27 -08:00
parent b9f669e1b4
commit 8dafca7e01

View file

@ -1,9 +1,12 @@
<section>
<h1 class="content-title"> <h1 class="content-title">
<a href="{{ .RelPermalink }}"> {{ if .IsNode }}
{{ .Title }} <a href="{{ .Permalink }}">{{ .Title}}<a>
{{ if .Draft }} :: Draft {{end}} {{ else }}
</a> <a href="{{ .RelPermalink }}">{{ .Title }}{{ if .Draft }} :: Draft {{end}}</a>
{{ end }}
</h1> </h1>
{{ if .IsPage }}
{{ if .Params.subtitle }}<p class=subtitle>{{ .Params.subtitle }}</p>{{ end }} {{ if .Params.subtitle }}<p class=subtitle>{{ .Params.subtitle }}</p>{{ end }}
{{ if or (eq .Type "post") (.Params.meta) }} {{ if or (eq .Type "post") (.Params.meta) }}
<span class="content-meta"> <span class="content-meta">
@ -32,3 +35,5 @@
{{ end }} {{ end }}
</span> </span>
{{ end }} {{ end }}
{{ end }}
</section>