splitted up stylesheet and added lots of scaffolding to it. Style needs working.
[theme-danix.xyz.git] / layouts / page / list-baseof.html
1 <!DOCTYPE html>
2 <html lang="{{ $.Site.LanguageCode | default "en" }}">
3 {{- partial "head.html" . -}}
4 <body class="blog 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 {{- block "list-main" . }}{{- end }}
23 </div>
24 {{- partial "footer.html" . -}}
25 </div>
26 {{- partial "footer-addition.html" . -}}
27 </body>
28 </html>