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

github.com/damiencaselli/hugo-journal.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/bottom.html')
-rw-r--r--layouts/partials/bottom.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/layouts/partials/bottom.html b/layouts/partials/bottom.html
new file mode 100644
index 0000000..60f5e0c
--- /dev/null
+++ b/layouts/partials/bottom.html
@@ -0,0 +1,37 @@
+
+ <footer class="site-footer">
+ <span itemscope itemtype="http://schema.org/Person">
+ <link itemprop="url" href="{{ .Site.BaseURL }}">
+ <span itemprop="name">{{- .Site.Author.name -}}</span>
+
+ {{- if isset .Site.Params "work" -}},
+ <span itemprop="jobTitle">{{- .Site.Params.jobTitle -}}</span> at
+ <span itemprop="memberOf" itemscope itemtype="http://schema.org/Organization"><a itemprop="url" href="{{ .Site.Params.companyUrl }}"><span itemprop="name">
+ {{- .Site.Params.company -}}
+ </span></a></span>
+ {{- end -}}
+
+ <br>
+
+ {{ if isset .Site.Params "githubusername" -}}
+ <a itemprop="sameAs" href="https://github.com/{{ .Site.Params.githubUsername }}" title="GitHub">GH</a>
+ {{- end }}
+
+ {{ if isset .Site.Params "twitterusername" -}}
+ <a itemprop="sameAs" href="https://twitter.com/{{ .Site.Params.twitterUsername }}" title="Twitter">TW</a>
+ {{- end}}
+
+ {{ if isset .Site.Params "gpg" -}}
+ <a itemprop="sameAs" href="{{ .Site.Params.gpg.link }}" title="GPG {{ .Site.Params.gpg.key }} (fingerprint: {{ .Site.Params.gpg.fingerprint }})">GPG</a>
+ {{- end }}
+ </span>
+
+ <!-- {{ .Hugo.BuildDate }} -->
+ </footer>
+ </div>
+
+ <script src="{{ .Site.BaseURL }}js/highlight.pack.js"></script>
+ <script>hljs.initHighlightingOnLoad();</script>
+
+ </body>
+</html>