footer

Pagina footer.xhtml la usamos para definir el footer del template.

Codigo allí podemos colocar etiquetas para los mensajes.

<ui:composition xmlns="http://www.w3.org/1999/xhtml"
                xmlns:h="http://xmlns.jcp.org/jsf/html"
                xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
                xmlns:jsf="http://xmlns.jcp.org/jsf"
                xmlns:p="http://primefaces.org/ui">

       <footer class="main-footer">
                        <!-- To the right -->
                        <div class="pull-right hidden-xs">
                            Anything you want
                        </div>
                        <!-- Default to the left -->
                        <strong>Copyright 2015 <a href="#">Company</a>.</strong> All rights reserved.
                    </footer>

</ui:composition>

Last updated