get in touch and footer done

This commit is contained in:
2021-08-26 15:09:09 +01:00
parent 322b6abe35
commit 334991b055
15 changed files with 81 additions and 26 deletions

View File

@ -3,7 +3,14 @@
<div class="columns">
<div class="column">
<div>FIND ME AT</div>
<div></div>
<div class="social-circles">
{{ if isset $.Site.Params.social "twitter" }}
{{- partial "social-circles/twitter.html" . -}}
{{ end }}
{{ if isset $.Site.Params.social "patreon" }}
{{- partial "social-circles/patreon.html" . -}}
{{ end }}
</div>
</div>
<div class="column has-text-right">
PRIVACY POLICY

View File

@ -0,0 +1,5 @@
<span class="social-circle patreon">
<a href="https://patreon.com/{{ site.Params.social.patreon }}">
<img src='{{ relURL "img/social/patreon.webp" }}'>
</a>
</span>

View File

@ -0,0 +1,5 @@
<span class="social-circle twitter">
<a href="https://twitter.com/{{ site.Params.social.twitter }}">
<img src='{{ relURL "img/social/twitter.svg" }}'>
</a>
</span>