-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhide-it.xsl
More file actions
28 lines (25 loc) · 752 Bytes
/
hide-it.xsl
File metadata and controls
28 lines (25 loc) · 752 Bytes
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
<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output
doctype-public="-//W3C//DTD HTML 4.01//EN"
doctype-system="http://www.w3.org/TR/html4/strict.dtd"
encoding="iso-8859-1"
indent="yes"
method="html"
version="4.01"/>
<xsl:template match="/">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<meta name="Content-Script-Type" content="text/javascript"/>
<meta name="Content-Style-Type" content="text/css"/>
<title>Access Denied</title>
</head>
<body>
<p>Access Denied</p>
</body>
</html>
</xsl:template>
</xsl:stylesheet>