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

about.html « partials « layouts - github.com/radity/raditian-free-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e2b346c6186c627351e2fe83364ab11ca3180ffe (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
{{ if .Site.Data.homepage.about.enable }}
<section class="section rad-animation-group pb-0" id="about">
  <div class="container">
    <div class="row d-flex flex-column-reverse flex-md-row">
      <div class="about__profile-picture col-12 col-md-6">
        <img
          class="lozad img-responsive rad-fade-in image-left-overflow"
          src="data:image/gif;base64,R0lGODlhBwACAIAAAP///wAAACH5BAEAAAEALAAAAAAHAAIAAAIDjI9YADs="
          data-src="{{ .Site.Data.homepage.about.image.x }}"
          data-srcset="{{ .Site.Data.homepage.about.image.x }} 1x, {{ .Site.Data.homepage.about.image._2x }} 2x"
          alt="Profile Picture"
        />
      </div>
      <div class="col-12 col-md-6 my-auto my-auto">
        <h2 class="rad-fade-down">{{ .Site.Data.homepage.about.title }}</h2>
        <p class="lead rad-fade-down">
          {{ .Site.Data.homepage.about.content | safeHTML }}
        </p>
        <a
          href="{{ .Site.Data.homepage.about.button.URL }}"
          target="_blank"
          class="btn btn-primary rad-fade-down"
        >
          <i class="{{ .Site.Data.homepage.about.button.icon }}"></i>
          {{ .Site.Data.homepage.about.button.btnText }}
        </a>
      </div>
    </div>
  </div>
</section>
{{ end }}