Change the Portal Bottom Navigation

Next we show how to replace the bottom navigation.


bottomnav.enable=true
bottomnav.vm=bottom-jportal.vm

bottomnav.enable turns on or off the bottom navigation.

bottomnav.vm -- You can use your own JSP or Velocity template here to completely customize your bottom navigation. That is exactly what we do here using a Velocity template tailored specifically for the JPortal tutorial.


<br/>
<hr/>
<table width="100%">
  <tr>
    <td align="left">
     <small>
       JPortal Tutorial for Jetspeed - Version 1.6<br/>
     </small>
    </td>
     #if ($config.getString("mail.support"))
     <td align="center">
       <a href="mailto:$config.getString("mail.support")">Support and Additional Information</a>
     </td>
     #end
     <td align="right">
       <a href="http://www.bluesunrise.com">
         <img align="right" alt="Bluesunrise" border="0" src="$clink.setURI("images/PoweredBS.gif")">
       </a>
     </td>
  </tr>
</table>