mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-11-03 04:17:17 -05:00
12 lines
559 B
XML
12 lines
559 B
XML
<xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version = "1.0">
|
|
<xsl:output method="html" doctype-system="about:legacy-compat" encoding="UTF-8" indent="yes" />
|
|
<xsl:template name="head">
|
|
<xsl:param name="title"/>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title><xsl:if test="$title"><xsl:value-of select="$title"/> — </xsl:if>Icecast Admin</title>
|
|
<link rel="stylesheet" type="text/css" href="/assets/css/style.css" />
|
|
<meta name="description" content="Icecast Server status page" />
|
|
</head>
|
|
</xsl:template>
|
|
</xsl:stylesheet> |