37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
<ui:composition
|
|
xmlns="http://www.w3.org/1999/xhtml"
|
|
xmlns:f="http://java.sun.com/jsf/core"
|
|
xmlns:h="http://java.sun.com/jsf/html"
|
|
xmlns:ui="http://java.sun.com/jsf/facelets"
|
|
xmlns:p="http://primefaces.org/ui"
|
|
xmlns:po="http://primefaces.org/poseidon"
|
|
>
|
|
<div style="background: #285B1C; display: flex; flex-direction: column;">
|
|
<div style="padding: 20px 24px;">
|
|
<div style="display: flex; align-items: center; gap: 20px">
|
|
<h:form prependId="false">
|
|
<h:link id="logolink">
|
|
<p:graphicImage
|
|
name="images/#{ guestPreferences.topbarTheme == 'light' ? 'logo-agape.png' : 'logo-agape-dark.png'}"
|
|
library="poseidon-layout"
|
|
style="height: 38px"
|
|
/>
|
|
</h:link>
|
|
</h:form>
|
|
|
|
<p style="color: #eeeeee; font-weight: 300; line-height: 16px">Prefeitura Municipal de <br/> Malhada dos Bois</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="menu-wrapper" style="background: #285B1C;">
|
|
<div class="layout-menu-container">
|
|
<h:form id="menuform">
|
|
<po:menu widgetVar="PoseidonMenuWidget">
|
|
<ui:include src="./menu.xhtml" />
|
|
</po:menu>
|
|
</h:form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</ui:composition>
|