<portal>
|
<portal>..</portal>
|
Defines a web page using HTML snippets known as portlets.
Note, that embedded HTML must conform to XHTML. Luxor automatically
converts XHTML back to HTML (e.g. <hr/>
becomes <hr>
).
Contents
(
xhtml |
portlet
)+
Appears In
xul
Examples
<portal id="system-info">
<portlet id="head"/>
<div align="center">
<table border="0" width="90%" cellspacing="0" cellpadding="0">
<tr>
<td>
<portlet id="user-banner" />
<portlet id="title"/>
<portlet id="system-info" />
<portlet id="system-properties" />
</td>
</tr>
</table>
</div>
</portal>