Files
FHC-Core/system/templates/contentohnetitel_xslt_xhtml.xslt
T
Andreas Österreicher 040d3dafe7 XSD und XSLT für Templates
2011-04-01 10:15:26 +00:00

18 lines
478 B
HTML

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:fo="http://www.w3.org/1999/XSL/Format"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="content">
<html>
<head>
<link rel="stylesheet" href="../skin/style.css.php" type="text/css" />
</head>
<body>
<h1><xsl:value-of select="titel" /></h1>
<xsl:value-of select="inhalt" disable-output-escaping="yes" />
</body>
</html>
</xsl:template>
</xsl:stylesheet >