cMainFooter.ftl
1 <#-- Macro: cMainFooter
2
3 Description: affiche un pied de page.
4
5 Parameters:
6 @param - title - string - required - nom du service numérique
7 @param - nested_pos - string - required - Position du contenu 'nested' passé dans la macro. Valeurs possible avant,'before' et aprés,'after'
8 @param - params - string - optionnal - permet d'ajouter des parametres HTML au tag footer
9 -->
10 <#macro cMainFooter title=mainSite nested_pos='after' params='' deprecated...>
11 <@deprecatedWarning args=deprecated />
12 <#if !dskey('theme.site_property.menu.sidebarMenu.checkbox')?starts_with('DS') && dskey('theme.site_property.menu.sidebarMenu.checkbox')?number == 1></div></div></#if>
13 <footer role="contentinfo"<#if params !=''> ${params!}</#if>>
14 <div class="container">
15 <div class="row align-items-center border-bottom py-5">
16 <div class="col-lg-8">
17 <ul class="list-inline footer-menu text-center text-lg-start" aria-label="#i18n{theme.footerInfo}" >
18 <#if nested_pos='before'><#nested></#if>
19 <@_footerMenu />
20 <#if nested_pos='after'>
21 <#nested>
22 </#if>
23 </ul>
24 </div>
25 <div class="col-lg-4">
26 <ul class="list-inline social-icons text-lg-end text-center">
27 <li class="list-inline-item">
28 <a target="_blank" aria-label="#i18n{theme.labelGoToSite} ${footerSocialTitleTw}" href="${footerSocialLinkTw}" class="hide-icon-target">
29 <i class="ti ti-brand-x"></i>
30 </a>
31 </li>
32 <li class="list-inline-item">
33 <a target="_blank" href="#" aria-label="#i18n{theme.labelGoToSite} ${footerSocialTitleGithub}" href="${footerSocialLinkGithub}" class="hide-icon-target">
34 <i class="ti ti-brand-github"></i>
35 </a>
36 </li>
37 </ul>
38 </div>
39 </div>
40 <div class="py-4 text-center">
41 <small class="text-light">LUTECE - Copyright © 2025 Ville de Paris</small>
42 </div>
43 </div>
44 </footer>
45 </#macro>