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

about.html « v3 « sections « partials « layouts - github.com/gurusabarish/hugo-profile.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dab93f35e00cdf6960bda53c71e69a895dc3608c (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
<div id="about" class="about-backdark about-back">
  <section class="pt-5">
    <div class="container-fluid">
      <div class="text-dark text-center h3">About Me</div>
      <div class="row justify-content-center about">
        <div class="col-md-6 about-content">
          <div data-aos="zoom-in-up" data-aos-offset="50" data-aos-delay="50" data-aos-once="true"
            data-aos-duration="900">
            <div class="px-2">
              {{ .Site.Params.descripe_l1_person | markdownify }}
              <br />
              <br />
              {{ .Site.Params.descripe_l2_person | markdownify }}
            </div>
            {{ if .Site.Params.email }}
            <div class="py-3 pl-2">
              <a href="mailto:{{ .Site.Params.email }}?subject=Say hi!" target="_blank"
                class="contact-btn btn text-muted">
                {{ .Site.Params.getintouch | default "Get in Touch" }}
              </a>
            </div>
            {{ end }}
          </div>
        </div>
        <div class="col-md-5 about-skill">
          <div data-aos="zoom-in-down" data-aos-offset="50" data-aos-delay="50" data-aos-once="true"
            data-aos-duration="1000">
            <div class="text-secondary text-center h4">Skills</div>
            {{ range .Site.Params.skills }}
            <div>
              <div>{{ .name }}</div>
              <div class="progress mb-4">
                <div class="progress-bar" role="progressbar" style="width: {{ .percentage }}%;" aria-valuemin="0"
                  aria-valuemax="100"></div>
              </div>
            </div>
            {{ end }}
          </div>
        </div>
      </div>
    </div>
  </section>
</div>