mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-11-03 04:17:17 -05:00
c99270de94
Thanks to Chagall on IRC for pointing this out.
57 lines
2.5 KiB
XML
57 lines
2.5 KiB
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" />
|
|
<!-- Import include files -->
|
|
|
|
<xsl:template match="/node()">
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title><xsl:value-of select="$title"/> — Icecast Server</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="/assets/css/style.css" media="screen, print" />
|
|
|
|
<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 is free server software for streaming multimedia." />
|
|
</head>
|
|
<body>
|
|
<xsl:text disable-output-escaping="yes">
|
|
<!-- WARNING:
|
|
DO NOT ATTEMPT TO PARSE ICECAST HTML OUTPUT!
|
|
The web interface may change completely between releases.
|
|
If you have a need for automatic processing of server data,
|
|
please read the appropriate documentation. Latest docs:
|
|
https://icecast.org/docs/icecast-latest/server-stats.html
|
|
-->
|
|
</xsl:text>
|
|
<!-- Header and menu -->
|
|
<header>
|
|
<nav id="main-nav" role="primary">
|
|
<a href="/" id="branding">
|
|
<img src="/assets/img/icecast.png" alt="Logo" />
|
|
<h1>Icecast Server</h1>
|
|
</a>
|
|
<ul>
|
|
<li><a href="/status.xsl">Status</a></li>
|
|
<li><a href="/server_version.xsl">Version</a></li>
|
|
<li class="right adminlink"><a href="/admin/">Administration</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
<!--<h1 id="header">Icecast <xsl:value-of select="$title"/></h1>-->
|
|
|
|
<!-- Content -->
|
|
<main role="main">
|
|
<xsl:call-template name="content" namespace="http://www.w3.org/1999/xhtml" />
|
|
</main>
|
|
|
|
<!-- Footer -->
|
|
<footer>
|
|
<p>Support icecast development at <a href="http://icecast.org">icecast.org</a></p>
|
|
</footer>
|
|
</body>
|
|
</html>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|