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

github.com/wileybaba/hugo-theme-robotico.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/footer.html')
-rw-r--r--layouts/partials/footer.html71
1 files changed, 71 insertions, 0 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
new file mode 100644
index 0000000..7211d51
--- /dev/null
+++ b/layouts/partials/footer.html
@@ -0,0 +1,71 @@
+<div class="my-4 footer">
+ <div class="container">
+ <div class="row justify-content-center">
+ <div class="col-sm-12 col-md-5">
+ {{ if .Site.Params.copyright }}
+ <div class="mx-0 mx-md-3 text-left">
+ {{ if .Site.Params.copyrightUrl }}
+ <a href="{{ .Site.Params.copyrightUrl }}">{{ .Site.Params.copyright }}</a>
+ {{ else }}
+ <a href="{{ .Site.BaseURL }}license">{{ .Site.Params.copyright }}</a>
+ {{ end }}
+ </div>
+ {{ end }}
+ </div>
+ <div class="col-sm-12 col-md-5">
+ <div class="mx-0 mx-md-3 text-right">
+ {{ if .Site.Params._500px }}
+ <a href="https://500px.com/{{ .Site.Params._500px }}" target="_blank">
+ <img class="icon" src="{{ .Site.BaseURL }}img/500px.svg" alt="500px" />
+ </a>
+ {{ end }}
+
+ {{ if .Site.Params.github }}
+ <a href="https://github.com/{{ .Site.Params.github }}" target="_blank">
+ <img class="icon" src="{{ "github.svg" | relURL }}" alt="github" />
+ </a>
+ {{ end }}
+
+ {{ if .Site.Params.twitter }}
+ <a href="https://twitter.com/{{ .Site.Params.twitter }}" target="_blank">
+ <img class="icon" src="{{ "img/twitter.svg" | relURL }}" alt="twitter" title="my twitter" />
+ </a>
+ {{ end }}
+
+ {{ if .Site.Params.instagram }}
+ <a href="https://instagram.com/{{ .Site.Params.instagram }}" target="_blank">
+ <img class="icon" src="{{ "img/instagram.svg" | relURL }}" alt="instagram" title="my instagram" />
+ </a>
+ {{ end }}
+
+ {{ if .Site.Params.linkedin }}
+ <a href="https://www.linkedin.com/in/{{ .Site.Params.linkedin }}" target="_blank">
+ <img class="icon" src="{{ .Site.BaseURL }}img/linkedin.svg" alt="linkedin" />
+ </a>
+ {{ end }}
+
+ {{ if .Site.Params.email }}
+ <a href="mailto:{{ .Site.Params.email }}">
+ <img class="icon" src="{{ .Site.BaseURL }}img/email.svg" alt="email" title="email me" />
+ </a>
+ {{ end }}
+
+ {{ if .Site.Params.fork}}
+ <a href="#">
+ <img class="icon" src="{{ .Site.BaseURL }}img/git.svg" alt="fork this page" title="fork this theme" />
+ </a>
+ {{ end }}
+
+ {{ if .IsTranslated }}
+ <br />
+ {{ range .Translations }}
+ <a href="{{ .Permalink }}">
+ <strong>{{ upper .Language.LanguageName }}</strong>
+ </a>
+ {{ end }}
+ {{ end }}
+ </div>
+ </div>
+ </div>
+ </div>
+</div>