15 lines
643 B
HTML
15 lines
643 B
HTML
|
<footer class="site-footer">
|
||
|
<div class="container">
|
||
|
<p style="font-size: 14px; font-weight: 600">
|
||
|
{% for foots in site.data.footer %}
|
||
|
<a href="{{ foots.href }}">{{ foots.title }}</a>
|
||
|
{% endfor %}
|
||
|
</p>
|
||
|
<p style="margin-top: 15px; font-size: 14px;">
|
||
|
© {{ site.time | date: '%Y' }}.
|
||
|
<a href="{{ "/" | relative_url }}">{{ site.author.name }}</a>.
|
||
|
Kildekode på <a href="{{ site.site-source }}">git</a>.
|
||
|
Laget med <a href="https://jekyllrb.com/">Jekyll</a>, <a href="https://getbootstrap.com/">Bootstrap</a> og masse frustrasjon.
|
||
|
</p>
|
||
|
</div>
|
||
|
</footer>
|