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

github.com/caressofsteel/hugo-story.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormspnr <mspnr@mail.ru>2021-02-01 21:07:20 +0300
committermspnr <mspnr@mail.ru>2021-02-01 21:07:20 +0300
commit765f229b303fec230caa0b32bf5de8a01dc29eb7 (patch)
treebb8c0ba2236efc43a545b49cc6c6470e138f04fe
parentf609df648ff95cf8a6069fbaaa668b1dcb0bda12 (diff)
fixing footer - moving li into with
-rw-r--r--layouts/partials/template/footer.html30
1 files changed, 15 insertions, 15 deletions
diff --git a/layouts/partials/template/footer.html b/layouts/partials/template/footer.html
index d050cde..671e3bd 100644
--- a/layouts/partials/template/footer.html
+++ b/layouts/partials/template/footer.html
@@ -1,15 +1,15 @@
- <!-- Footer -->
- <footer class="wrapper style1 align-center">
- <div class="inner">
- <ul class="icons">
- <li>{{ with .Site.Params.social.github }}<a target="_blank" href="{{.}}" class="icon brands style2 fa-github"><span class="label">Github</span></a></li>{{end}}
- <li>{{ with .Site.Params.social.twitter }}<a target="_blank" href="{{.}}" class="icon brands style2 fa-twitter"><span class="label">Twitter</span></a></li>{{end}}
- <li>{{ with .Site.Params.social.instagram }}<a target="_blank" href="{{.}}" class="icon brands style2 fa-instagram"><span class="label">Instagram</span></a></li>{{end}}
- <li>{{ with .Site.Params.social.linkedin }}<a target="_blank" href="{{.}}" class="icon brands style2 fa-linkedin"><span class="label">LinkedIn</span></a></li>{{end}}
- <li>{{ with .Site.Params.social.email }}<a target="_blank" href="mailto:{{.}}" class="fav icon style2 fa-envelope"><span class="label">Email</span></a></li>{{end}}
- </ul>
- <p>Hugo Story &copy; 2020 <a target="_blank" href="https://github.com/caressofsteel/">CaressOfSteel</a><span class="footerspacer icon fad fa-diamond"></span>
- Ported from <a target="_blank" href="https://html5up.net/uploads/demos/story/">Story</a> by HTML5UP<span class="footerspacer icon fad fa-diamond"></span>
- Images courtesy of <a target="_blank" href="https://unsplash.com">Unsplash</a></p>
- </div>
- </footer> \ No newline at end of file
+<!-- Footer -->
+<footer class="wrapper style1 align-center">
+ <div class="inner">
+ <ul class="icons">
+ {{ with .Site.Params.social.github }}<li><a target="_blank" href="{{.}}" class="icon brands style2 fa-github"><span class="label">Github</span></a></li>{{end}}
+ {{ with .Site.Params.social.twitter }}<li><a target="_blank" href="{{.}}" class="icon brands style2 fa-twitter"><span class="label">Twitter</span></a></li>{{end}}
+ {{ with .Site.Params.social.instagram }}<li><a target="_blank" href="{{.}}" class="icon brands style2 fa-instagram"><span class="label">Instagram</span></a></li>{{end}}
+ {{ with .Site.Params.social.linkedin }}<li><a target="_blank" href="{{.}}" class="icon brands style2 fa-linkedin"><span class="label">LinkedIn</span></a></li>{{end}}
+ {{ with .Site.Params.social.email }}<li><a target="_blank" href="mailto:{{.}}" class="fav icon style2 fa-envelope"><span class="label">Email</span></a></li>{{end}}
+ </ul>
+ <p>Hugo Story &copy; 2020 <a target="_blank" href="https://github.com/caressofsteel/">CaressOfSteel</a><span class="footerspacer icon fad fa-diamond"></span>
+ Ported from <a target="_blank" href="https://html5up.net/uploads/demos/story/">Story</a> by HTML5UP<span class="footerspacer icon fad fa-diamond"></span>
+ Images courtesy of <a target="_blank" href="https://unsplash.com">Unsplash</a></p>
+</div>
+</footer> \ No newline at end of file