forked from phpDocumentor/phpDocumentor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebar.xsl
More file actions
24 lines (20 loc) · 768 Bytes
/
sidebar.xsl
File metadata and controls
24 lines (20 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<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="sidebar/header.xsl" />
<xsl:include href="sidebar/sections.xsl" />
<xsl:include href="sidebar/footer.xsl" />
<xsl:template name="content">
<div id="sidebar">
<div id="sidebar-header">
<xsl:call-template name="sidebar-header"/>
</div>
<div id="sidebar-nav">
<xsl:call-template name="sidebar-sections"/>
</div>
<div id="sidebar-footer">
<xsl:call-template name="sidebar-footer"/>
</div>
</div>
</xsl:template>
</xsl:stylesheet>