view xslt/books.xslt @ 986:5e84ce26c7a7

Donor added.
author Maxim Konovalov <maxim@nginx.com>
date Mon, 23 Sep 2013 14:22:57 +0000
parents 91dd4a7fadbb
children c454373427ef
line wrap: on
line source

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

   <xsl:template match="book">

      <table>
         <tr>

            <td bgcolor="#EEEEEE">

               <a href="{@link}">

                  <img src="{@cover}" alt="" style="padding: 2pt;" border="0"/>

               </a>

            </td>

            <td>

               <xsl:text>title: </xsl:text> 
               <a href="{@link}">
                  <xsl:value-of select="@title"/>
               </a>
               <br/>

               <xsl:text>author: </xsl:text>
               <xsl:choose>

                  <xsl:when test="@site"> 
                     <a href="{@site}">
                        <xsl:value-of select="@author"/>
                     </a>
                  </xsl:when>
                  <xsl:otherwise>
                     <xsl:value-of select="@author"/>
                  </xsl:otherwise>
               </xsl:choose>
               <br/>

               <xsl:if test="@translator">
                  <xsl:text>translator: </xsl:text>
                  <xsl:value-of select="@translator"/>
                  <br/>
               </xsl:if>

               <xsl:if test="@publisher">
                  <xsl:text>publisher: </xsl:text>
                  <xsl:value-of select="@publisher"/>
                  <br/>
               </xsl:if>

               <xsl:text>language: </xsl:text>
               <xsl:value-of select="@lang"/>

            </td>

         </tr>
      </table>
   </xsl:template>

</xsl:stylesheet>