diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2023-02-25 13:15:44 +0100 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2023-02-25 13:15:44 +0100 |
| commit | 900bb5e845c3ad44defbd427cae3d44a4a43321f (patch) | |
| tree | df3d96a93771884add571e82336c29fc3d9c7a1c /code/frontpage/layouts/partials/footer/footer.html | |
| download | greatoffice-900bb5e845c3ad44defbd427cae3d44a4a43321f.tar.xz greatoffice-900bb5e845c3ad44defbd427cae3d44a4a43321f.zip | |
feat: Initial commit
Diffstat (limited to 'code/frontpage/layouts/partials/footer/footer.html')
| -rw-r--r-- | code/frontpage/layouts/partials/footer/footer.html | 18 |
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 |
