Add files via upload

This commit is contained in:
Gorri
2022-11-02 17:48:47 +01:00
committed by GitHub
parent f5af86908c
commit 6802467dcc
99 changed files with 7730 additions and 0 deletions
@@ -0,0 +1,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 -}}