website/_includes/footer.html

55 lines
2.3 KiB
HTML

<footer class="site-footer h-card">
<data class="u-url" href="{{ '/' | relative_url }}"></data>
<div class="wrapper">
<h2 class="footer-heading">
{{ site.title | escape }}
</h2>
<div class="footer-col-wrapper">
<div class="footer-col footer-col-1">
<ul class="contact-list">
<li class="p-name">
<img id="personal-logo" src="{{ '/assets/main/personal-logo.jpg' | relative_url }}" title="Yep, that's my profile picture"> &nbsp;
{%- if site.author -%}
{{ site.author | escape }}
{%- else -%}
{{ site.title | escape }}
{%- endif -%}
</li>
{%- if site.email -%}
<li><a class="u-email" href="mailto:{{ site.email }}">{{ site.email }}</a></li>
{%- endif -%}
</ul>
</div>
<div class="footer-col footer-col-2">
{%- include social.html -%}
</div>
<div class="footer-col footer-col-3">
<p>{{- site.description | escape -}}</p>
</div>
</div>
<div class="site-icon-credits">
<p>Resources used:</p>
<p><a href="https://thenounproject.com/term/tag/88707">Tag</a>, by <a href="https://thenounproject.com/cengizsari">Cengiz SARI</a></p>
<p><a href="https://thenounproject.com/term/calendar/689869/">Calendar</a>, <a href="https://thenounproject.com/term/catalog/972336">Catalog</a>, <a href="https://thenounproject.com/term/open-in-new-window/972169/">Open in New Window</a>, and <a href="https://thenounproject.com/term/update/514116">Update</a> by <a href="https://thenounproject.com/monstercritic">✦ Shmidt Sergey ✦</a></p>
<p><a href="https://thenounproject.com/term/time/1286627">Time</a>, by <a href="https://thenounproject.com/icondesk">Icondesk</a></p>
</div>
<div class="site-credits">
<p>Built with <a href="https://jekyllrb.com/">Jekyll</a> and hosted by <a href="https://github.com">GitHub</a></p>
<p>Icons from <a href="https://thenounproject.com">The Noun Project</a></p>
<p class="copyright">© <span class="date-year"></span> Gabriel Arazas</p>
</div>
</div>
<script>
const dateYear = document.querySelector(".date-year");
dateYear.innerText = `${new Date().getFullYear()}`;
</script>
</footer>