mirror of https://github.com/kc0bfv/ticky_tacky_dark.git

Karl
03.35.2020 8c9e97bf8c819501374b15d25b68a7137af9b8a8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
    <head>{{- partial "head.html" . -}}</head>
    <body>
        <div id="full_body">
            <header id="header" class="top-section">
                {{- partial "body_header.html" . -}}
                {{ with $.Param "headername" }}<div id="header-text">{{ . }}</div>{{ end -}}
            </header>
            <div id="content" class="top-section">
                <div class="container-fluid">
                    <div class="row">
                        <div class="col col-12 col-sm-8 col-lg-9">
                            <main class="row">
                                {{- block "main" . }}{{- end }}
                            </main>
                        </div>
                        <nav class="col col-8 offset-2 col-sm-4 offset-sm-0 col-lg-3">
                            {{- partial "navbar" . -}}
                        </nav>
                    </div>
                </div>
            </div>
            <footer id="footer" class="top-section">
                {{- partial "body_footer.html" . -}}
            </footer>
            {{- partial "foot.html" . -}}
        </div>
    </body>
    {{ range .Params.js }}
    <script src="{{ . }}"></script>
    {{ end }}
</html>