mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-22 01:12:17 +00:00
ba90fe8072
. generation and archiving bescheide in EN and DE . adaptation of stg_art in xsl-forms and abschluesspruefung.rdf.php . deletion of few Lehrgang-Zeugnis-xsl templates, which are not used anymore
28 lines
563 B
XML
28 lines
563 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
Document : newstylesheet.xsl
|
|
Created on : 29. Januar 2018, 11:48
|
|
Author : Cristina
|
|
Description:
|
|
Purpose of transformation follows.
|
|
-->
|
|
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
<xsl:output method="html"/>
|
|
|
|
<!-- TODO customize transformation rules
|
|
syntax recommendation http://www.w3.org/TR/xslt
|
|
-->
|
|
<xsl:template match="/">
|
|
<html>
|
|
<head>
|
|
<title>newstylesheet.xsl</title>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|