Portal, Express Beta Version 6.1
Operating systems: i5/OS, Linux,Windows |
Within this location, subdirectories for markup, locale, and client types are used to support portal aggregation.
The starting place for building the portal page is Default.jsp in the /themes directory. The screen and skin are called by the corresponding <portal-core:screenRender/> and <portal-core:pageRender/> tags from the portal-core tag library.
The following example is shown to illustrate the underlying code in themes, screens, and skins as they are used in the portal. The code example is followed by an illustration of how this code would render in the portal.<style> div.theme, div.screen, div.skin { border: 3px solid; width: 75%; padding: 5px; } div.theme { color: blue;} div.screen, p.screen { color: green;} div.skin, p.skin {color: red;} </style> <div class="theme"> <p>Theme (Default.jsp)</p> <p>...</p> <p class="screen"><portal-core:screenRender/></p> <div class="screen"> <p>Screen (Home.jsp)</p> <p>...</p> <p class="skin"><portal-core:pageRender/></p> <div class="skin">Skin</div> </div> </div>