|
|
|
<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
|
<xsl:stylesheet version="1.0"
|
|
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
|
|
<xsl:import href="nd_templates.xsl" />
|
|
|
|
<xsl:import href="pageComponents_html.xsl" />
|
|
|
|
<!--In diesem Stylesheet können Sie individuelle templates unterbringen,
|
|
|
|
die in ihrer Präzedenz das normale Stylesheet
|
|
|
|
pageComponents_html.xsl überragt. -->
|
|
|
|
<xsl:import href="pageComponents_html_final.xsl" />
|
|
|
|
|
|
|
|
<xsl:output method="html" indent="yes" />
|
|
|
|
<xsl:template match="/">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" data-theme="light">
|
|
|
|
<head>
|
|
|
|
<xsl:call-template name="nd_htmlhead">
|
|
|
|
<xsl:with-param name="title" select="concat('Menue ',/menue/user)" />
|
|
|
|
</xsl:call-template>
|
|
|
|
|
|
|
|
</head>
|
|
|
|
<xsl:call-template name="nd_htmlscript" />
|
|
|
|
<body class="has-navbar-fixed-top" >
|
|
|
|
<!-- -->
|
|
|
|
|
|
|
|
<!--#Template Beginn Top-Navigation-->
|
|
|
|
<xsl:call-template name="nd_navi_top" />
|
|
|
|
<!--#Template Ende Top-Navigation-->
|
|
|
|
|
|
|
|
<div class="columns">
|
|
|
|
|
|
|
|
<!--#Template Beginn Navigations-Panel Auswertungen-->
|
|
|
|
<xsl:call-template name="nd_navi_panel" />
|
|
|
|
<!--#Template Ende Navigations-Panel Auswertungen-->
|
|
|
|
|
|
|
|
<!--Beginn Info-Card-->
|
|
|
|
<!--Beginn Seitentitel, Krümelpfad, Knopfleiste-->
|
|
|
|
<!--<section class="hero-body has-background-light">-->
|
|
|
|
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-content">
|
|
|
|
<!--<div class="columns is-mobile is-left">
|
|
|
|
<div class="column is-half">
|
|
|
|
-->
|
|
|
|
<xsl:call-template name="nd_submenu_initial" />
|
|
|
|
<!--
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
-->
|
|
|
|
|
|
|
|
</div> <!--Ende Card-Content-->
|
|
|
|
</div> <!--Ende Card-Background-->
|
|
|
|
<!--</div> Ende Hero-Columns-->
|
|
|
|
<!--</section> Ende Hero = Ende Info-Card-->
|
|
|
|
|
|
|
|
</div> <!--Ende Site-Columns-->
|
|
|
|
</body>
|
|
|
|
|
|
|
|
<footer>
|
|
|
|
<!--#Template Beginn Bottom-Navigation-->
|
|
|
|
<xsl:call-template name="nd_navi_bottom" />
|
|
|
|
<!--#Template Ende Bottom-Navigation-->
|
|
|
|
</footer>
|
|
|
|
|
|
|
|
</html>
|
|
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|