aboutsummaryrefslogtreecommitdiffstats
path: root/code/frontpage/layouts/partials/footer/footer.html
diff options
context:
space:
mode:
Diffstat (limited to 'code/frontpage/layouts/partials/footer/footer.html')
-rw-r--r--code/frontpage/layouts/partials/footer/footer.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/code/frontpage/layouts/partials/footer/footer.html b/code/frontpage/layouts/partials/footer/footer.html
new file mode 100644
index 0000000..ceb5fae
--- /dev/null
+++ b/code/frontpage/layouts/partials/footer/footer.html
@@ -0,0 +1,18 @@
+<footer class="footer text-muted">
+ <div class="container-{{ if .Site.Params.options.fullWidth }}fluid{{ else }}xxl{{ end }}">
+ <div class="row">
+ <div class="col-lg-8 order-last order-lg-first">
+ <ul class="list-inline">
+ <li class="list-inline-item">{{ .Site.Params.footer | safeHTML }}</li>
+ </ul>
+ </div>
+ <div class="col-lg-8 order-first order-lg-last text-lg-end">
+ <ul class="list-inline">
+ {{ range .Site.Menus.footer -}}
+ <li class="list-inline-item"><a href="{{ .URL | relURL }}">{{ .Name }}</a></li>
+ {{ end -}}
+ </ul>
+ </div>
+ </div>
+ </div>
+</footer> \ No newline at end of file