All checks were successful
continuous-integration/drone/pr Build is passing
37 lines
1.3 KiB
XML
37 lines
1.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
<xsl:include href="fsfe_pageclass.xsl" />
|
|
<xsl:include href="fsfe_topbanner.xsl" />
|
|
<xsl:include href="translation_list.xsl" />
|
|
<xsl:include href="fsfe_pageheader.xsl" />
|
|
<xsl:include href="notifications.xsl" />
|
|
<xsl:include href="fsfe_mainsection.xsl" />
|
|
<xsl:include href="fsfe_followupsection.xsl" />
|
|
<xsl:include href="fsfe_pagefooter.xsl" />
|
|
<xsl:include href="body_scripts.xsl" />
|
|
|
|
<!-- HTML body -->
|
|
<!--<xsl:template match="body">-->
|
|
<xsl:template name="page-body">
|
|
<xsl:element name="body">
|
|
|
|
<xsl:call-template name="fsfe_pageclass" />
|
|
|
|
<!-- First of all, a comment to make clear this is generated -->
|
|
<xsl:comment>This file was generated by an XSLT script. Please do not edit.</xsl:comment>
|
|
|
|
<xsl:call-template name="translation_list" />
|
|
<xsl:call-template name="fsfe_pageheader" />
|
|
<xsl:call-template name="fsfe_topbanner" /> <!-- trigger to show/hide topbanner -->
|
|
<xsl:call-template name="notifications" />
|
|
<xsl:call-template name="fsfe_mainsection" />
|
|
<xsl:call-template name="fsfe_followupsection" />
|
|
<xsl:call-template name="fsfe_pagefooter" />
|
|
<xsl:call-template name="body_scripts" />
|
|
|
|
</xsl:element>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|