<?xml version="1.0" encoding="iso-8859-1"?><!-- COIN78 physical | summer 2002 --><!-- assignment five, looney_labs_games.xsl --><!-- Marlene Bruce | marlene@digitizethis.com --><xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl"><!-- HEADER --><xsl:template match="/"> <html><head><title>Looney Labs Games</title><link href="looney_labs_games.css" rel="stylesheet" type="text/css" /></head><body class="looneyLabsGames" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><xsl:apply-templates /> </body></html></xsl:template> <!-- ROOT TEMPLATE --><xsl:template match="looneyLabsGames"><!-- TITLE --><span class="title">Looney Labs Games</span><!-- GAME container --><xsl:for-each select="/looneyLabsGames/game"><table class="game"><tr><td>		<!-- NAME --><span class="name"><xsl:value-of select="name" /></span><br/>		<!-- TAGLINE --><span class="tagline"><xsl:value-of select="tagline" /></span><br/>		<!-- OFFICIAL PAGE and PHOTO --><span class="officialPage"><xsl:apply-templates select="officialPage" /></span><br/><table width="100" border="0" align="right" cellpadding="0" cellspacing="0"><tr><td class="photo"><xsl:apply-templates select="photo" /></td></tr></table>		<!-- GAME TYPE --><span class="gameType">Type of game: <xsl:value-of select="gameType" /></span><br/>		<!-- PRODUCT DESCRIPTION --><span class="productDescription">Product description: <xsl:value-of select="productDescription" /></span><br/>		<!-- PLAYERS and AGES --><span class="players"><xsl:value-of select="players" /> <xsl:value-of select="ages" /></span><br/>		<!-- PRICE --><span class="price">$<xsl:value-of select="price" /></span><br/>		<!-- SUMMARY TITLE --><span class="summaryTitle"><xsl:value-of select="summaryTitle" /></span><br/>		<!-- SUMMARY TEXT --><span class="summaryText"><xsl:value-of select="summaryText" /></span></td></tr>		<!-- REVIEWS TITLE --><tr><td><xsl:apply-templates select="reviewsTitle" />		<!-- REVIEW --><xsl:apply-templates select="review" />		<!-- AWARDS TITLE --><xsl:apply-templates select="awardsTitle" />		<!-- AWARD --><xsl:apply-templates select="award" />		<!-- TESTIMONIALS TITLE --><xsl:apply-templates select="testimonialsTitle" />		<!-- TESTIMONIAL TEXT (and AUTHOR)--><xsl:apply-templates select="testimonialText" />		<!-- LINKS TITLE --><xsl:apply-templates select="linksTitle" />		<!-- LINK --><xsl:apply-templates select="link" /></td></tr>		<!-- GAME DESIGN --><tr><td><xsl:apply-templates select="gameDesign" />		<!-- PHYSICAL DESIGN --><xsl:apply-templates select="physicalDesign" />		<!-- ADDITIONAL PHYSICAL DESIGN --><xsl:apply-templates select="additionalPhysicalDesign" />		<!-- PRODUCED BY --><xsl:apply-templates select="producedBy" />		<!-- PUBLISHED BY --><xsl:apply-templates select="publishedBy" />		<!-- COMMENTS --><span class="comments"><strong>My comments:</strong> <xsl:value-of select="comments" /></span></td></tr></table></xsl:for-each></xsl:template><!-- OFFICIAL PAGE TEMPLATE --><xsl:template match="officialPage">  Official site: <a><xsl:attribute name="href"><xsl:value-of select="./@filename"/></xsl:attribute><xsl:value-of select="."/></a></xsl:template><!-- PHOTO TEMPLATE --><xsl:template match="photo">  <img>    <xsl:attribute name="src">      <xsl:value-of select="./@filename"/>    </xsl:attribute>    <xsl:attribute name="width">      <xsl:value-of select="./@x"/>    </xsl:attribute>    <xsl:attribute name="height">      <xsl:value-of select="./@y"/>    </xsl:attribute>  </img></xsl:template><!-- REVIEWS TITLE TEMPLATE --><xsl:template match="reviewsTitle">  <br/><span class="reviewsTitle"><xsl:value-of select="."/></span><br/></xsl:template><!-- REVIEW TEMPLATE --><xsl:template match="review">  <span class="review"><a><xsl:attribute name="href"><xsl:value-of select="./@filename"/></xsl:attribute><xsl:value-of select="."/></a></span><br/></xsl:template><!-- AWARDS TITLE TEMPLATE --><xsl:template match="awardsTitle">  <br/><span class="awardsTitle"><xsl:value-of select="."/></span><br/></xsl:template><!-- AWARD TEMPLATE --><xsl:template match="award">  <span class="award"><xsl:value-of select="./@source"/> <a><xsl:attribute name="href"><xsl:value-of select="./@filename"/></xsl:attribute><xsl:value-of select="."/></a></span><br/></xsl:template><!-- TESTIMONIALS TITLE TEMPLATE --><xsl:template match="testimonialsTitle">  <br/><span class="testimonialsTitle"><xsl:value-of select="."/></span><br/></xsl:template><!-- TESTIMONIALS TEMPLATE --><xsl:template match="testimonialText">  <span class="testimonialText"><xsl:value-of select="./@testimonial"/></span><br/><span class="author"><xsl:value-of select="./@author"/></span><br/><br/></xsl:template><!-- LINK TITLE --><xsl:template match="linksTitle">  <span class="linksTitle"><xsl:value-of select="."/></span><br/></xsl:template><!-- LINK TEMPLATE --><xsl:template match="link">  <span class="link"><a><xsl:attribute name="href"><xsl:value-of select="./@filename"/></xsl:attribute><xsl:value-of select="."/></a></span><br/></xsl:template><!-- GAME DESIGN TEMPLATE --><xsl:template match="gameDesign">  <span class="gameDesign"><xsl:value-of select="."/></span></xsl:template><!-- PHYSICAL DESIGN TEMPLATE --><xsl:template match="physicalDesign">  <span class="physicalDesign"><xsl:value-of select="."/></span></xsl:template><!-- ADDITIONAL PHYSICAL DESIGN TEMPLATE --><xsl:template match="additionalPhysicalDesign">  <span class="additionalPhysicalDesign"><xsl:value-of select="."/></span></xsl:template><!-- PRODUCED BY TEMPLATE --><xsl:template match="producedBy">  <span class="producedBy"><xsl:value-of select="."/></span></xsl:template><!-- PUBLISHED BY TEMPLATE --><xsl:template match="publishedBy">  <span class="publishedBy"><xsl:value-of select="."/></span>  <br/></xsl:template></xsl:stylesheet>