Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/maxlefou/hugo.386.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormaxlefou <buttbadger@gmail.com>2023-04-14 15:39:52 +0300
committermaxlefou <buttbadger@gmail.com>2023-04-14 15:39:52 +0300
commitd3fa959037167b46d5dd4e1fbf2b997cdcd20346 (patch)
treed2c06a5007625ddccf0625a5590c14f37766103b
parent0886fd5b0337fb039c10b6be2261e2d1ea0d0247 (diff)
prettified footer
-rw-r--r--layouts/partials/footer.html26
1 files changed, 21 insertions, 5 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index dac78ee..5d7489c 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -1,11 +1,27 @@
<footer class="container">
- <hr class="soften">
+ <hr class="soften" />
<p class="text-center">
{{- partial "copyright.html" . -}}
</p>
<p class="text-center">
- {{ with .Site.Params.facebook }}<a href="{{ . }}">Facebook</a> {{ end }} {{ with .Site.Params.twitter }}<a href="{{ . }}">Twitter</a> {{ end }} {{ with .Site.Params.linkedin }}<a href="{{ . }}">Linkedin</a> {{ end }} {{ with .Site.Params.github
- }}
- <a href="{{ . }}">GitHub</a> {{ end }} {{ with .Site.Params.gitlab }}<a href="{{ . }}">GitLab</a>{{ end }}
+ {{ with .Site.Params.facebook }}
+ <a href="{{ . }}">Facebook</a>
+ {{ end }}
+
+ {{ with .Site.Params.twitter }}
+ <a href="{{ . }}">Twitter</a>
+ {{ end }}
+
+ {{ with .Site.Params.linkedin }}
+ <a href="{{ . }}">Linkedin</a>
+ {{ end }}
+
+ {{ with .Site.Params.github}}
+ <a href="{{ . }}">GitHub</a>
+ {{ end }}
+
+ {{ with .Site.Params.gitlab }}
+ <a href="{{ . }}">GitLab</a>
+ {{ end }}
</p>
-</footer> \ No newline at end of file
+</footer>