24 lines
1.0 KiB
Twig
24 lines
1.0 KiB
Twig
<footer>
|
|
<div class="footer-content">
|
|
<nav class="footer-nav">
|
|
<ul id="{{ current_language == 'en' ? 'menu-footer-en' : 'menu-footer' }}">
|
|
{% for item in footer_menu.items %}
|
|
<li class="{{ item.classes|join(' ') }}">
|
|
<a href="{{ item.url }}">{{ item.title | bilingual(current_language) }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</nav>
|
|
<div class="footer-logos">
|
|
<a href="https://www.cnrs.fr/" target="_blank">
|
|
<img src="{{ theme.uri }}/assets/images/cnrs.png" alt="Logo CNRS">
|
|
</a>
|
|
<a href="https://www.sorbonne-nouvelle.fr/" target="_blank">
|
|
<img src="{{ theme.uri }}/assets/images/sorbonne.png" alt="Logo Sorbonne Nouvelle">
|
|
</a>
|
|
<a href="https://www.ens.psl.eu/" target="_blank">
|
|
<img src="{{ theme.uri }}/assets/images/ens.png" alt="Logo ENS">
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</footer> |