diff options
-rw-r--r-- | rcynic/rcynic.xsl | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/rcynic/rcynic.xsl b/rcynic/rcynic.xsl index 0a387e24..4e2b00cc 100644 --- a/rcynic/rcynic.xsl +++ b/rcynic/rcynic.xsl @@ -44,11 +44,19 @@ <xsl:template match="/"> <html> + <xsl:variable name="title"> + <xsl:text>rcynic summary </xsl:text> + <xsl:value-of select="rcynic-summary/@date"/> + </xsl:variable> <head> - <title>rcynic summary</title> + <title> + <xsl:value-of select="$title"/> + </title> </head> <body> - <h1>rcynic summary</h1> + <h1> + <xsl:value-of select="$title"/> + </h1> <br/> <table rules="all"> <thead> |