forked from phpDocumentor/phpDocumentor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.xsl
More file actions
36 lines (34 loc) · 1.25 KB
/
index.xsl
File metadata and controls
36 lines (34 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output indent="yes" method="html"/>
<xsl:include href="chrome.xsl"/>
<xsl:include href="chrome/header.xsl"/>
<xsl:include href="chrome/menu.xsl"/>
<xsl:include href="chrome/footer.xsl"/>
<xsl:template name="content">
<table id="page">
<thead>
<tr><td colspan="2" id="db-header">
<xsl:call-template name="page-header" />
</td></tr>
<tr><td colspan="2" id="db-menu">
<xsl:call-template name="page-menu" />
</td></tr>
</thead>
<tbody>
<tr>
<td id="sidebar">
<iframe name="nav" id="nav" src="{$root}nav.html"/>
</td>
<td id="contents">
<iframe name="content" id="content" src="{$root}content.html"/>
</td>
</tr>
</tbody>
<tfoot>
<tr><td colspan="2" id="db-footer">
<xsl:call-template name="page-footer"/>
</td></tr>
</tfoot>
</table>
</xsl:template>
</xsl:stylesheet>