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

hero.html « partials « layouts - github.com/salsysd/hugo-assembly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ea3da2c826e11687e49e94d4deb70c497373d4c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  <div id="welcome" class="container">
    {{ with .Site.Params.welcome }}
    <div class="title">
      <h2>{{ .title }}</h2>
      <span class="byline">{{ .subtitle }}</span>
    </div>
    <p>{{ .description | markdownify }}</p>
    <ul class="actions">
      <li><a href="#" class="button">{{ .button_text }}</a></li>
    </ul>
    {{end}}
  </div>