1 | <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl" xmlns:HTML="http://www.w3.org/Profiles/XHTML-transitional"> |
2 | |
3 | <xsl:template><xsl:apply-templates/></xsl:template> |
4 | |
5 | <xsl:template match="/doc"> |
6 | <HTML> |
7 | <HEAD> |
8 | <TITLE>Publications</TITLE> |
9 | </HEAD> |
10 | <BODY> |
11 | <xsl:apply-templates/> |
12 | </BODY> |
13 | </HTML> |
14 | </xsl:template> |