summaryrefslogtreecommitdiffstats
path: root/docs/_vendor/github.com/gohugoio/gohugoioTheme/layouts/partials/home-page-sections/features-single.html
blob: f36b3d674b4c7ed03c1e8fad2a39cd635bb8ef20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{{ if .Params.sections }}
  {{ range .Params.sections }}
  {{ $.Scratch.Add "i" 1 }}{{ $i := $.Scratch.Get "i" }}

    <section class="w-100  ph4 ph5-ns pv4 pv6-ns mid-gray {{ .color_classes }}">
      <div class="flex-ns flex-wrap center mw9">

        <div class="w-100 w-50-l {{ if modBool $i 2 }}order-1{{ else }}order-0{{ end }}">
          <div class="w-90-ns center">
            <img src="{{ .image }}" alt="image depicting an example of {{ .heading }}" class="img shadow-5">
          </div>
        </div>

        <div class="w-100 w-50-l">
          <div class="w-80-ns center tc">
            <h3 class="f1 fw4 black ma0 pt4 lh-title pt0-l">{{ .heading }}</h3>
            <p class="f3 lh-copy">
              {{ .copy }}
            </p>
              <p class="f4 lh-copy nested-linksTK">
                <a href="{{ .link | absURL }}" class="link black dim">
                  {{ .cta }} {{ partial "svg/link-ext.svg" (dict "fill" "#333" "size" "14") }}
                </a>
              </p>
          </div>
        </div>

      </div>
    </section>

  {{ end }}
{{ end }}