62fc7432a1e9e556ef539e3804aaa7310f3e8b67
[theme-danix.xyz.git] / layouts / home-baseof.html
1 <!DOCTYPE html>
2 <html lang="{{ $.Site.LanguageCode | default "en" }}">
3 {{- partial "head.html" . -}}
4 <body class="homepage home is-preload">
5 <a id="top" class="skip-link screen-reader-text" href="#primary">skip to content</a>
6 <div id="wrapper">
7 {{- partial "header.html" . -}}
8 <section id="banner" class="major">
9 <div class="inner">
10 <header class="major">
11 <h1>{{ .Site.Title }}</h1>
12 </header>
13 <div class="content">
14 <p>{{ .Site.Params.Description }}</p>
15 <ul class="actions">
16 <li><a href="#one" class="button next scrolly">Let's go!!</a></li>
17 </ul>
18 </div>
19 </div>
20 </section>
21 <div id="main">
22 <section id="one">
23 {{- block "home-main" . }}{{- end }}
24 </section>
25 <section id="two">
26 {{ partial "home-social-links.html" . }}
27 </section>
28 </div>
29 {{- partial "footer.html" . -}}
30 </div>
31 {{- partial "footer-addition.html" . -}}
32 </body>
33 </html>