<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE xsl:stylesheet [
<!ENTITY nbsp " ">
<!ENTITY copy "©">
<!ENTITY reg "®">
<!ENTITY trade "™">
<!ENTITY mdash "—">
<!ENTITY ldquo "“">
<!ENTITY rdquo "”">
<!ENTITY pound "£">
<!ENTITY yen "¥">
<!ENTITY euro "€">
]>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" encoding="iso-8859-1" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" />
<xsl:template match="/">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
<title>Phritz framework test</title>
<link href="{concat($PHRITZ_URL,'/themes/html/default/index.css')}" rel="stylesheet" />
<script src="{concat($PHRITZ_URL,'/scripts/dojo.js')}"></script>
<script src="{concat($PHRITZ_URL,'/scripts/phritz.js')}"></script>
<script src="{concat($PHRITZ_URL,'/scripts/soapclient.js')}"></script>
<script src="{concat($PHRITZ_URL,'/scripts/xmlrpc.js')}"></script>
</head>
<body>
<div id="page">
<div id="banner"><img src="{concat($PHRITZ_URL,'/themes/html/default/images/logo.png')}" /></div>
<xsl:copy-of select="/ROOT/CONTENT/*" />
</div>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
|