aboutsummaryrefslogtreecommitdiffstats
path: root/site/layouts/values/single.html
blob: 9b6fa1392fad7dc2f42b5785406826d682c9f1d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ partial "head" . }}
{{ partial "nav" . }}
{{ partial "jumbotron" (dict "imageUrl" .Params.image "title" .Title) }}

<div class="mw7 center ph3 pt4">

  {{ range $index, $element := .Params.values }}
    {{ if modBool $index 2 }}
      {{ partial "media-block" $element }}
    {{ else }}
      {{ partial "media-block-reverse" $element }}
    {{ end }}
  {{ end }}

</div>

{{ partial "footer" . }}