You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
868 B

  1. <?xml version="1.0"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  3. <xsl:param name="label"/>
  4. <xsl:template match="/">
  5. <image width="456" height="35" bgcolor="0086b2">
  6. <xsl:apply-templates/>
  7. </image>
  8. </xsl:template>
  9. <xsl:template match="s1|faqs|changes">
  10. <xsl:variable name="title">
  11. <xsl:if test="string-length(@title)=0">
  12. <xsl:value-of select="$label"/>
  13. </xsl:if>
  14. <xsl:if test="string-length(@title)>0">
  15. <xsl:value-of select="@title"/>
  16. </xsl:if>
  17. </xsl:variable>
  18. <text font="Arial" size="29" x="454" y="8" halign="right" valign="top" color="004080"
  19. text="{$title}"/>
  20. <text font="Arial" size="29" x="452" y="6" halign="right" valign="top" color="ffffff"
  21. text="{$title}"/>
  22. </xsl:template>
  23. </xsl:stylesheet>