Created
February 13, 2012 19:26
-
-
Save mbogoevici/1819349 to your computer and use it in GitHub Desktop.
Debugging forge core
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul> | |
<li> | |
<h:link outcome="/scaffold/customer/search" value="Customer"/> | |
</li> | |
<li> | |
<h:link outcome="/scaffold/employer/search" value="Employer"/> | |
</li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" | |
xmlns:h="http://java.sun.com/jsf/html" | |
xmlns:ui="http://java.sun.com/jsf/facelets"> | |
<h:head> | |
<title>#{empty pageTitle ? '{#pageTitle}' : pageTitle}</title> | |
<link rel="icon" href="#{resource['favicon.ico']}" /> | |
<h:outputStylesheet name="forge-style.css" /> | |
</h:head> | |
<h:body> | |
<div id="wrapper"> | |
<div id="navigation"> | |
<h:link outcome="/index.xhtml"> | |
<img src="#{resource['forge-logo.png']}" alt="Forge... get hammered" border="0"/> | |
</h:link> | |
<ul> | |
<li> | |
<h:link outcome="/scaffold/employer/search" value="Employer"/> | |
</li> | |
<li> | |
<h:link outcome="/scaffold/customer/search" value="Customer"/> | |
</li> | |
</ul> | |
</div> | |
<div id="content"> | |
<h1><ui:insert name="header"/></h1> | |
<h2><ui:insert name="subheader"/></h2> | |
<ui:insert name="main"/> | |
<div id="footer"> | |
Powered by <a href="http://jboss.org/forge">Forge</a>. Icons by the <a href="http://everaldo.com/crystal">Crystal Project</a> | |
</div> | |
</div> | |
</div> | |
</h:body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment