You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
3.6 KiB
102 lines
3.6 KiB
<?xml version="1.0" encoding="UTF-8" ?> |
|
<xsl:stylesheet version="1.0" |
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" |
|
xmlns:html="http://www.w3.org/1999/xhtml"> |
|
<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" /> |
|
<!--<xml:output method="xml" media-type="text/html" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" |
|
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" cdata-section-elements="script style" indent="yes" encoding="UTF-8"/>--> |
|
<xsl:output method="html" indent="yes" /> |
|
|
|
<xsl:template match="/"> |
|
<html> |
|
<head> |
|
<xsl:call-template name="nd_htmlhead"> |
|
<xsl:with-param name="title" select="concat('Maske ',/maske/name)" /> |
|
</xsl:call-template> |
|
</head> |
|
<xsl:call-template name="nd_htmlscript" /> |
|
<body class="has-navbar-fixed-top" onload="document.getElementById('progressbar').style.display='none';initThemenbaumJs();" |
|
onpageshow="document.getElementById('progressbar').style.display='none';"> |
|
<!--#Template Beginn Top-Navigation --> |
|
<xsl:call-template name="nd_navi_top" /> |
|
<!--#Template Ende Top-Navigation--> |
|
|
|
<div class="columns"> |
|
|
|
<!--#Template Beginn Navigations-Panel Auswertungen--> |
|
<xsl:for-each select="/maske"> |
|
<xsl:call-template name="nd_navi_panel" /> |
|
</xsl:for-each> |
|
<!--#Template Ende Navigations-Panel Auswertungen--> |
|
|
|
<!--Beginn Selektions-Card--> |
|
<!--Beginn Seitentitel, Krümelpfad, Knopfleiste--> |
|
|
|
<section class="hero-body"> |
|
<!--*** 050624 geändert BF --> |
|
<div class="columns is-mobile is-left"> |
|
<div class="card"> |
|
<div class="card-content"> |
|
|
|
<!--<div class="card"> |
|
<div class="card-content"> |
|
<div class="columns is-mobile is-left"> |
|
<div class="column is-three-quarter">--> |
|
<!--050624 geändert BF ***--> |
|
|
|
<xsl:call-template name="nd_progressbar" /> |
|
<div id="content"> |
|
<!--#Template Beginn Seitentitel--> |
|
<xsl:variable name="masken_tid"><xsl:value-of select="/maske/@tid"/></xsl:variable> |
|
<xsl:call-template name="nd_pagetitle" > |
|
<xsl:with-param name="title" select="maske/@name" /> |
|
<xsl:with-param name="subtitle" select="''" /> |
|
<xsl:with-param name="icon_classname" select="/maske/menue/eintraege/eintrag[@isMaske='true' and tid=$masken_tid]/css_class" /> |
|
</xsl:call-template> |
|
<!--#Template Ende Seitentitel--> |
|
|
|
<!--#Template Krümelpfad--> |
|
<xsl:call-template name="nd_breadcrumb" /> |
|
<!--#Template Ende Krümelpfad--> |
|
|
|
|
|
<!--#Template Beginn Knopfleiste--> |
|
<xsl:call-template name="nd_buttonbar_mask" /> |
|
<!--#Template Ende Knopfleiste--> |
|
|
|
<div class="selectionbox"> |
|
<!--#Template Beginn Auswahlfelder--> |
|
<xsl:call-template name="nd_selectionform" /> |
|
<!--#Template Ende Auswahlfelder--> |
|
</div> |
|
<!--#Template Beginn Auswahlformular-Buttons--> |
|
</div><!--Ende content--><!--050624 verschoben BF ***--> |
|
</div><!--Ende Card-Content--> |
|
</div><!--Ende Card--> |
|
</div><!--Ende HeroBody-Columns--> |
|
|
|
<!--</div>--> <!--Ende Card-Content--><!--050624 geändert BF ***--> |
|
<!--</div>--> <!--Ende Card-Background--><!--050624 geändert BF ***--> |
|
|
|
</section> <!--Ende Hero = Ende Selektions-Card--> |
|
</div> <!--Ende Seiten-Columns--> |
|
<!--Beginn nd_selectionform_field_weitere_einst--> |
|
|
|
|
|
<xsl:call-template name="nd_selectionform_and_table_dialogs" /> |
|
<xsl:call-template name="nd_selectionform_dialogs" /> |
|
|
|
<footer> |
|
<!--#Template Beginn Bottom-Navigation--> |
|
<xsl:call-template name="nd_navi_bottom" /> |
|
<!--#Template Ende Bottom-Navigation--> |
|
</footer> |
|
</body> |
|
</html> |
|
</xsl:template> |
|
</xsl:stylesheet>
|
|
|