Fix bigimg if only single bigimg is set

Fixing an off by 1 error which caused single bigimg's not to show up
This commit is contained in:
Michael Romero 2017-03-08 23:55:03 -08:00
commit 917f5fef57
2 changed files with 6 additions and 6 deletions

View file

@ -1,10 +1,10 @@
{{ if or .Params.bigimg .Title }}
{{ if isset .Params.bigimg 1 }}
{{ 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 1 }}has-img{{ end }}">
<div class="intro-header {{ if isset .Params.bigimg 1 }}big-img{{ else }}no-img{{ end }}">
<header class="header-section {{ if isset .Params.bigimg 0 }}has-img{{ end }}">
<div class="intro-header {{ if isset .Params.bigimg 0 }}big-img{{ else }}no-img{{ end }}">
{{ partial "header.html" . }}
<span class="img-desc" style="display: inline;"></span>
</div>