home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0"?>
- <!-- Copyright (C) 1995-2003 Jasc Software, Inc. and its licensors. -->
- <!-- All rights reserved. -->
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
- <xsl:template match="/">
- <HTML>
- <xsl:apply-templates select="photos"></xsl:apply-templates>
- </HTML>
- </xsl:template>
- <xsl:template match="photos">
- <BODY bgcolor="#FFFFFF" background="patterns/graypattern.gif" link="white" vlink="white" alink="white">
- <xsl:apply-templates select="album"></xsl:apply-templates>
- </BODY>
- </xsl:template>
- <xsl:template match="album">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
- <meta name="copyright" content="Copyright (C) 1995-2003 Jasc Software, Inc. and its licensors. All rights reserved."/>
-
- </head>
- <table border="0" cellspacing="0" cellpadding="0" width="100%">
- <tr>
- <td valign="top" width="195">
- <table width="195" border="0" cellspacing="0" cellpadding="0" align="right">
- <tr>
- <td background="graphics/filmback.gif" width="199">
- <div align="center">
- <xsl:apply-templates select="imagelist/imageinfo"></xsl:apply-templates>
- </div>
- </td>
- </tr>
- <tr>
- <td width="200"></td>
- </tr>
- </table>
- <div align="right">
- <br kludge=""/>
- </div>
- </td>
- </tr>
- </table>
- </xsl:template>
- <xsl:template match="imageinfo">
- <br kludge=""></br>
- <A target="main"><xsl:attribute name="href"><xsl:value-of select="html_info/@fname"></xsl:value-of></xsl:attribute>
- <xsl:apply-templates select="thumbinfo"></xsl:apply-templates></A>
- </xsl:template>
- <xsl:template match="thumbinfo">
- <IMG border="2"><xsl:attribute name="src"><xsl:value-of select="@fname"></xsl:value-of></xsl:attribute><xsl:attribute name="width"><xsl:value-of select="thumbsize/@width"/></xsl:attribute>
- <xsl:attribute name="height"><xsl:value-of select="thumbsize/@height"/></xsl:attribute>
- <xsl:attribute name="alt"><xsl:value-of select="../title"/></xsl:attribute></IMG></xsl:template>
- </xsl:stylesheet>
-