Advertisement
GMasucci

xsl file

Nov 8th, 2013
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.95 KB | None | 0 0
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <html xsl:version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">
  3.   <body style="font-family:Arial;font-size:12pt;background-color:#EEEEEE">
  4.  
  5.     <xsl:for-each select="DestinationResults">
  6.     <xsl:for-each select="Destination">
  7.     <xsl:for-each select="HotelAvailabilityListResults">
  8.     <xsl:for-each select="Hotel">
  9.  
  10.       <div style="background-color:teal;color:white;padding:4px">
  11.         <span style="font-weight:bold"><xsl:value-of select="name"/></span>
  12.         - <xsl:value-of select="city"/>
  13.       </div>
  14.       <div style="margin-left:20px;margin-bottom:1em;font-size:10pt">
  15.         <p><xsl:value-of select="shortDescription"/>.
  16.         <span style="font-style:italic">
  17.           <xsl:value-of select="address1"/>
  18.         </span>.</p>
  19.       </div>
  20.     </xsl:for-each>
  21.     </xsl:for-each>
  22.     </xsl:for-each>
  23.     </xsl:for-each>
  24.  
  25.   </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement