<xsl:template match="mh:slide">
<xt:document method="html" indent="yes" href="{concat(../@dest,'/',@name,'.html')}">
<html>
<head>
<title><xsl:value-of select="@name"/></title>
<meta name="Author" value="Mary Holstege"/>
<style type="text/css">
h1 { align: center }
h2 { font-size: 16pt }
pre.example { background: &excolor; ; color: &extextcolor; ; font-size:16pt }
table.example { background: &excolor; ; color: &extextcolor; }
</style>
</head>
<body text="&textcolor;" bgcolor="&bgcolor;" link="&link;" vlink="&vlink;" alink="#ff00ff" style="font-size: 18pt">
<p align="right">
<xsl:if test="mh:example">
<a href="{@name}_example.html"><img src="../images/example.gif" alt="[Example]" border="0" width="32" height="32"/></a>
</xsl:if>
<xsl:if test="preceding-sibling::mh:slide[1]">
<a href="{preceding-sibling::mh:slide[1]/@name}.html"><img src="../images/back.gif" alt="[Back]" border="0"/></a>
</xsl:if>
<xsl:if test="following-sibling::mh:slide[1]">
<a href="{following-sibling::mh:slide[1]/@name}.html"><img src="../images/next.gif" alt="[Next]" border="0"/></a>
</xsl:if>
</p>
<xsl:apply-templates/>
<p align="right" style="font-size: 8pt"><xsl:number select="."/></p>
</body>
</html>
<xsl:if test="mh:example">
<xsl:call-template name="example"/>
</xsl:if>
</xt:document>
</xsl:template>
|
Copyright (c) 2001 Mary Holstege
All rights reserved.