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

intro.html « partials « layouts - github.com/curttimson/hugo-theme-massively.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fd9ed5a5ca1ad31934f87fcf4833598ad5f46d6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ $data := index .Site.Data .Site.Language.Lang }}
{{ with $data.intro }}
<div id="intro">
    <h1>
        {{- range $i, $e := .title -}}
            {{- if $i -}}<br/>{{- end -}} {{- .line -}}
        {{- end -}}
    </h1>
    <p>
        {{- range $i, $e := .description -}}
            {{- if $i -}}<br/>{{- end -}} {{- .line -}}
        {{- end -}}
    </p>
    <ul class="actions">
        <li><a href="#header" class="button icon solo fa-arrow-down scrolly">{{ i18n "INTRO_CONTINUE" . }}</a></li>
    </ul>
</div>
{{- end -}}