]> git.mxchange.org Git - addressbook-war.git/blob - web/WEB-INF/templates/guest/guest_footer.tpl
Updated copyright year
[addressbook-war.git] / web / WEB-INF / templates / guest / guest_footer.tpl
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <ui:composition
3         xmlns="http://www.w3.org/1999/xhtml"
4         xmlns:f="http://java.sun.com/jsf/core"
5         xmlns:h="http://java.sun.com/jsf/html"
6         xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
7         xmlns:p="http://primefaces.org/ui"
8         >
9
10         <div class="footer">
11                 <ul class="navbar-horizontal">
12                         <li class="navlink-horizontal">
13                                 <p:link
14                                         outcome="index"
15                                         value="#{msg.GUEST_LINK_HOME}"
16                                         title="#{msg.GUEST_LINK_HOME_TITLE}"
17                                         />
18                         </li>
19
20                         <ui:fragment rendered="#{featureController.isFeatureEnabled('user_resend_confirmation_link')}">
21                                 <li class="navlink-horizontal">
22                                         <p:link
23                                                 outcome="user_resend_link"
24                                                 value="#{msg.GUEST_LINK_RESEND_LINK}"
25                                                 title="#{msg.GUEST_LINK_RESEND_LINK_TITLE}"
26                                                 />
27                                 </li>
28                         </ui:fragment>
29
30                         <ui:fragment rendered="#{featureController.isFeatureEnabled('imprint')}">
31                                 <li class="navlink-horizontal">
32                                         <p:link
33                                                 outcome="imprint"
34                                                 value="#{msg.GUEST_LINK_IMPRINT}"
35                                                 title="#{msg.GUEST_LINK_IMPRINT_TITLE}"
36                                                 />
37                                 </li>
38                         </ui:fragment>
39
40                         <ui:fragment rendered="#{featureController.isFeatureEnabled('terms')}">
41                                 <li class="navlink-horizontal">
42                                         <p:link
43                                                 outcome="terms"
44                                                 value="#{msg.GUEST_LINK_TERMS}"
45                                                 title="#{msg.GUEST_LINK_TERMS_TITLE}"
46                                                 />
47                                 </li>
48                         </ui:fragment>
49
50                         <ui:fragment rendered="#{featureController.isFeatureEnabled('privacy')}">
51                                 <li class="navlink-horizontal">
52                                         <p:link
53                                                 outcome="privacy"
54                                                 value="#{msg.GUEST_LINK_PRIVACY}"
55                                                 title="#{msg.GUEST_LINK_PRIVACY_TITLE}"
56                                                 />
57                                 </li>
58                         </ui:fragment>
59
60                         <li class="footer-copyright">
61                                 <h:outputText value="Copyright (c) 2016 - 2024 Free Software Foundation" />
62                         </li>
63                 </ul>
64         </div>
65 </ui:composition>