forked from autonomic-cooperative/sophie-lewis-hugo
get in touch and footer done
This commit is contained in:
@ -6,7 +6,7 @@
|
||||
<div class="headshot">
|
||||
{{ $img := relURL "img/headshot_example.png" }}
|
||||
{{ if isset $.Site.Params.about "headshot" }}
|
||||
{{ if fileExists ( printf "themes/sophie-lewis/static/img/%s" $.Site.Params.about.headshot ) }}
|
||||
{{ if fileExists ( printf "static/img/%s" $.Site.Params.about.headshot ) }}
|
||||
{{ $img := relURL ( printf "img/%s" $.Site.Params.about.headshot )}}
|
||||
<img src='{{ $img }}'>
|
||||
{{ else }}
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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>
|
||||
@ -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>
|
||||
8
themes/sophie-lewis/layouts/shortcodes/getintouch.html
Normal file
8
themes/sophie-lewis/layouts/shortcodes/getintouch.html
Normal file
@ -0,0 +1,8 @@
|
||||
<div class="contact">
|
||||
<p class="contact_text">
|
||||
{{ .Get "text" }}
|
||||
</p>
|
||||
<p class="contact_details">
|
||||
<strong>{{ .Get "contact" }}</strong>
|
||||
</p>
|
||||
</div>
|
||||
Reference in New Issue
Block a user