added list page for categories
[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="scrolly skip-link screen-reader-text" href="#main">skip to content</a>
6 <div id="wrapper">
7 {{- partial "header.html" . -}}
8 <section id="banner" class="major{{if .IsHome }} style4{{ end }}">
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 </div>
26 {{- partial "footer.html" . -}}
27 </div>
28 {{- partial "footer-addition.html" . -}}
29 </body>
30 </html>