mirror of
https://github.com/Noettore/cocoa-eh-hugo-theme.git
synced 2025-10-15 03:36:41 +02:00
72 lines
2.5 KiB
HTML
72 lines
2.5 KiB
HTML
<div class="footer column">
|
|
<div class="container">
|
|
|
|
{{ if .Site.Params.githubRepo }}
|
|
<div class="copyright">
|
|
{{ $length := len ( split .Site.Params.githubRepo "/" ) }}
|
|
{{ if eq $length 2 }}
|
|
<a href="https://github.com/{{ .Site.Params.githubRepo }}/tree/master/content/{{ .File.Path }}" target="_blank">View this post on GitHub</a>
|
|
{{ else }}
|
|
<a href="https://github.com/{{ .Site.Params.githubRepo }}/content/{{ .File.Path }}" target="_blank">View this post on GitHub</a>
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|
|
|
|
<div class="copyright">
|
|
|
|
{{ if .Site.Params.copyright }}
|
|
{{ if .Site.Params.copyrightUrl }}
|
|
<a href="{{ .Site.Params.copyrightUrl }}">{{ .Site.Params.copyright }}</a>
|
|
{{ else }}
|
|
<a href="{{ .Site.BaseURL }}license">{{ .Site.Params.copyright }}</a>
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
</div>
|
|
<div class="icons">
|
|
|
|
{{ if .Site.Params.facebook }}
|
|
<a href="https://facebook.com/{{ .Site.Params.facebook }}" target="_blank">
|
|
<img class="icon" src="{{ .Site.BaseURL }}img/facebook.svg" alt="facebook" />
|
|
</a>
|
|
{{ end }}
|
|
|
|
{{ if .Site.Params.github }}
|
|
<a href="https://github.com/{{ .Site.Params.github }}" target="_blank">
|
|
<img class="icon" src="{{ .Site.BaseURL }}img/github.svg" alt="github" />
|
|
</a>
|
|
{{ end }}
|
|
|
|
{{ if .Site.Params.twitter }}
|
|
<a href="https://twitter.com/{{ .Site.Params.twitter }}" target="_blank">
|
|
<img class="icon" src="{{ .Site.BaseURL }}img/twitter.svg" alt="twitter" />
|
|
</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" />
|
|
</a>
|
|
{{ end }}
|
|
|
|
{{ if .Site.RSSLink }}
|
|
<a href="{{ .Site.RSSLink }}">
|
|
<img class="icon" src="{{ .Site.BaseURL }}img/rss.svg" alt="rss" />
|
|
</a>
|
|
{{ end }}
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{ partial "footer_scripts" . }}
|
|
|
|
</body>
|
|
</html>
|