initial setup of related content inside single articles. Needs working.
[theme-danix.xyz.git] / layouts / article / single-baseof.html
1 <!DOCTYPE html>
2 <html lang="{{ $.Site.LanguageCode | default "en" }}">
3 {{- partial "head.html" . -}}
4 <body class="article 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
9 <section id="banner" class="major">
10 <div class="inner">
11 <header class="major">
12 <h1>{{ .Title }}</h1>
13 </header>
14 <div class="content">
15 <p>{{ .Params.excerpt }}</p>
16 </div>
17 </div>
18 </section>
19
20 <div id="main">
21 <section id="one">
22 <div class="inner">
23 {{- partial "breadcrumbs.html" . -}}
24 {{- partial "prev-next.html" . -}}
25 </div>
26 </section>
27 <section id="two">
28 {{- block "article-main" . }}{{- end }}
29 </section>
30 <section id="three">
31 {{- partial "funcs/related.html" . -}}
32 </section>
33 </div>
34 {{- partial "footer.html" . -}}
35 </div>
36 {{- partial "footer-addition.html" . -}}
37 </body>
38 </html>