aboutsummaryrefslogtreecommitdiff
path: root/utility/master.xsl
blob: 4f3597cfdc522f9297ea95ec93a104c59b0b924e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
	version="1.0"
	xmlns="http://www.w3.org/1999/xhtml"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
>

<xsl:output
	method="xml"
	doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
	doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
	omit-xml-declaration="yes"
	encoding="UTF-8"
	indent="no"
/>

<xsl:variable name="root" select="/datasource"/>

<xsl:template match="/">
<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
		<meta name="viewport" content="width=device-width,initial-scale=1.0"/>

		<link rel="stylesheet" type="text/css" href="/main.css" />
	</head>
	<body>
		<xsl:apply-templates />
	</body>
</html>
</xsl:template>

<xsl:template match="text()|@*"/>

</xsl:stylesheet>