16 lines
514 B
HTML
16 lines
514 B
HTML
<div class="row">
|
|
<div class="twelve columns" style="margin-top: 25%">
|
|
<h1>
|
|
{{ if not .IsHome }}
|
|
{{ if eq .Kind "taxonomy" }}
|
|
{{ .Title | lower }}
|
|
{{ else }}
|
|
{{ .Title }}
|
|
{{ end }}
|
|
-
|
|
{{ end }}
|
|
<a href="/" style="text-decoration: none;">{{ .Site.Title }}</a>
|
|
</h1>
|
|
{{ if .IsHome }}<p>{{ .Site.Params.Description }}</p>{{ end }}
|
|
</div>
|
|
</div> |