forked from WeLoveSpeed/welovespeed.com
-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.html
28 lines (28 loc) · 1.09 KB
/
footer.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<footer class="page-footer">
<div class="wrapper">
{% if page.i18n-key == 'home' or page.i18n-key == 'contact' %}
{% include staff.html %}
<hr>
{% endif %}
<div class="grid-2">
<section>
<h2 id="footerTitle2" class="text-lg">{% t Pour en savoir plus %}</h2>
<nav aria-labelledby="footerTitle2">
<ul>
{% assign footer_links = site.data.sitemap | where: 'in_footer', true %}
{% for link in footer_links %}
<li>{% include link.html link=link %}</li>
{% endfor%}
</ul>
</nav>
</section>
<section>
<h2 class="text-lg">{% t Restons en contact %}</h2>
{% include newsletter-form.html compact=true context="footer" %}
{% include social-links.html %}
</section>
</div>
<hr>
<p class="text-center">{% t Contribué sur %} <a href="https://github.com/{{ site.repository }}">github</a> {% t et propulsé par %} <a href="https://www.netlify.com" alt="Netlify: All-in-one platform for automating modern web projects">netlify</a>.</p>
</div>
</footer>