24 lines
954 B
HTML
24 lines
954 B
HTML
<footer class="side-padding" style="background-image: url('{{ "img/home-blob-flip.svg" | absURL }}');">
|
|
<a href="{{ $.Site.BaseURL }}" class="footer-link">
|
|
{{ with resources.Get "icons/home_button.jpg" }}
|
|
<img class="footer-home-icon" src="{{ .Permalink }}" alt="Home">
|
|
{{ end }}
|
|
</a>
|
|
<div style="display: flex; flex-direction: row; justify-content: space-evenly; width: 100%;">
|
|
{{ if isset $.Site.Params "github"}}
|
|
<a href="{{ $.Site.Params.github }}" class="footer-link">
|
|
{{ with resources.Get "icons/github.png" }}
|
|
<img class="footer-icon" src="{{ .Permalink }}" alt="GitHub"/>
|
|
{{ end }}
|
|
</a>
|
|
{{ end }}
|
|
{{ if isset $.Site.Params "linkedin"}}
|
|
<a href="{{ $.Site.Params.linkedin }}" class="footer-link">
|
|
{{ with resources.Get "icons/linkedin.png" }}
|
|
<img class="footer-icon" src="{{ .Permalink }}" alt="LinkedIn"/>
|
|
{{ end }}
|
|
</a>
|
|
{{ end }}
|
|
</div>
|
|
</footer>
|