Welcome to mirror list, hosted at ThFree Co, Russian Federation.

do_things.html « v1 « sections « partials « layouts - github.com/gurusabarish/hugo-profile.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6d1a6ffba002f2dd6ba5e5fc00a68cb5353a5811 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
{{ if .Site.Params.usedothings }}
<section>
  <div class="pt-3 do-things text-center" id="do-things">
    <div class="container">
      <div class="things-i-do text-primary font-weight-bold">
        Things I do
      </div>

      <div class="do-things-card">
        <div class="row pb-2 justify-content-center">
          {{ range .Site.Params.Things }}
          {{ if .url }}
          <div class="col-lg-3 col-md-4">
            <a id="nothing" href={{ .url | default "#" }} class="">
              <div class="things shadow rounded p-4 my-2 mb-4 card bg-primary text-light">
                <i class="{{ .logo }} fa-3x" width="3em" height="3em"></i>
                <div class="p-2 font-weight-bold">
                  {{ .title }}
                </div>
                <div class="py-4 things-text">
                  {{ .description }}
                </div>
              </div>
            </a>
          </div>
          {{ else }}
          <div class="col-lg-3 col-md-4">
            <div class="things shadow rounded p-4 my-2 mb-4 card bg-primary text-light">
              <i class="{{ .logo }} fa-3x" width="3em" height="3em"></i>
              <div class="p-2 font-weight-bold">
                {{ .title }}
              </div>
              <div class="py-4 things-text">
                {{ .description }}
              </div>
            </div>
          </div>
          {{ end }}
          {{ end }}
        </div>
      </div>
    </div>
  </div>
</section>
{{ end }}