initial setup of related content inside single articles. Needs working.
[theme-danix.xyz.git] / layouts / post / single-baseof.html
CommitLineData
ea61fd75 1<!DOCTYPE html>
2<html lang="{{ $.Site.LanguageCode | default "en" }}">
3 {{- partial "head.html" . -}}
c2ea6701 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">
ea61fd75 7 {{- partial "header.html" . -}}
c2ea6701 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>
ea61fd75 17 </div>
c2ea6701 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">
eae15ff2 31 {{- partial "funcs/related.html" . -}}
c2ea6701 32 </section>
ea61fd75 33 </div>
34 {{- partial "footer.html" . -}}
35 </div>
c2ea6701 36 {{- partial "footer-addition.html" . -}}
ea61fd75 37 </body>
38</html>