nemhugo/layouts/partials/header_wp.html
Michael Romero f1c6df1122 Fix missing title when screen < 365px
Fixed issue where title and subtitle disappear when screen width is
less than 365px
2017-03-09 09:52:17 -08:00

19 lines
No EOL
743 B
HTML

{{ if or .Params.bigimg .Title }}
{{ if isset .Params.bigimg 0 }}
<div id="header-big-imgs" data-num-img={{len .Params.bigimg}} {{range $i, $img := .Params.bigimg}}data-img-src-{{add $i 1}}="{{$img.src}}" {{ if $img.desc}}data-img-desc-{{add $i 1}}="{{$img.desc}}"{{end}}{{end}}></div>
{{ end }}
<header class="header-section {{ if isset .Params.bigimg 0 }}has-img{{ end }}">
{{ if isset .Params.bigimg 0 }}
<div class="intro-header big-img">
{{ partial "header.html" . }}
<span class="img-desc" style="display: inline;"></span>
</div>
{{end}}
<div class="intro-header no-img">
{{ partial "header.html" . }}
</div>
</header>
{{ else }}
<div class="intro-header"></div>
{{ end }}