working on the blog listing page. Almost finished. Needs a few tweaks.
[theme-danix.xyz.git] / layouts / articles / list-baseof.html
CommitLineData
e28a215c 1<!DOCTYPE html>
2<html lang="{{ $.Site.LanguageCode | default "en" }}">
3 {{- partial "head.html" . -}}
02fcbbf7 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" class="section-blog">
e28a215c 7 {{- partial "header.html" . -}}
02fcbbf7 8
9 <section id="banner" class="major">
10 <div class="inner">
11 <header class="major">
12 <h1>{{ .Site.Title }}</h1>
13 </header>
14 <div class="content">
15 <p>{{ .Site.Params.Description }}</p>
16 </div>
e28a215c 17 </div>
02fcbbf7 18 </section>
19
20 <div id="main">
21 {{- block "blog-list" . }}{{- end }}
e28a215c 22 </div>
23 {{- partial "footer.html" . -}}
24 </div>
02fcbbf7 25 {{- partial "footer-addition.html" . -}}
e28a215c 26 </body>
27</html>
02fcbbf7 28