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

about.html « partials « layouts - github.com/schmanat/hugo-highlights-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ad09814e796e5fc575e43226b7b2abd8061d8ad3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

{{ "<!-- about -->" | safeHTML }}
  <section id="about" class="main special">
    <div class="container">
      {{ if eq .Site.Params.backgroundpersection true }}
        <span class="image fit primary"><img src="images/{{ with .Site.Params.about.picture }}{{ . }}{{ end }}" alt="" /></span>
      {{ end }}
      <div class="content">
        <header class="major">
          <h2>{{ with .Site.Params.about.title }}{{ . | markdownify }}{{ end }}</h2>
        </header>
        <p>{{ with .Site.Params.about.description }}{{ . | markdownify }}{{ end }}</p>
      </div>
      <a href="#skills" class="goto-next scrolly">{{ with .Site.Params.about.buttontext }}{{ . | markdownify }}{{ end }}</a>
    </div>
  </section>