2020-10-09 05:36:03 -04:00
|
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
2020-10-09 06:26:18 -04:00
|
|
|
<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>
|
2020-10-01 19:17:32 -04:00
|
|
|
|
2020-10-09 06:26:18 -04:00
|
|
|
<link rel="stylesheet" type="text/css" href="/assets/css/style.css" />
|
2020-10-01 19:17:32 -04:00
|
|
|
|
2020-10-09 06:26:18 -04:00
|
|
|
<meta name="theme-color" content="#001826" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
|
|
|
|
<meta name="description" content="Icecast Server status page" />
|
|
|
|
</head>
|
|
|
|
</xsl:template>
|
2020-10-01 19:17:32 -04:00
|
|
|
</xsl:stylesheet>
|