<?xml version="1.0" encoding="UTF-8"?><xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"><xsl:output indent="yes" method="html"> <xsl:template match="/"> <xsl:for-each select="serverstatus/game"> <xsl:if test="@name = 'lotro'"> <xsl:for-each select="server"> <xsl:if test="@name = 'Gilrain'"> GILRAIN server is <xsl:choose> <xsl:when test="status = 'up'"><span style="font-weight: bold; color: green;">UP</span></xsl:when> <xsl:otherwise><span style="font-weight: bold; color: red;">DOWN</span></xsl:otherwise> </xsl:choose> <br /> <span style="font-size: 10px;">Last checked:<br /> <xsl:value-of select="formatteddate"> GMT</xsl:value-of></span> </xsl:if> </xsl:for-each> </xsl:if> </xsl:for-each> </xsl:template></xsl:output></xsl:stylesheet>