15 lines
676 B
Plaintext
15 lines
676 B
Plaintext
<footer class="wrapper-full">
|
|
<div>
|
|
{% render 'partials/components/socials', socials: author.socials, mail: author.mail, showLabel: false %}
|
|
<ul class="list-inline">
|
|
<li>Réalisé avec {% render 'partials/components/link', label: "Eleventy", href: "https://11ty.dev/", target: "_blank", rel: "nofollow" %}</li>
|
|
{% if site.repository and site.repository != "" %}
|
|
<li>Source sur {% render 'partials/components/link', label: site.repoSrc, href: site.repository, target: "_blank", rel: "nofollow" %}</li>
|
|
{% endif %}
|
|
</ul>
|
|
</div>
|
|
</footer>
|
|
|
|
{% css %}
|
|
{% include "css/footer.css" %}
|
|
{% endcss %} |