Skip Ribbon Commands
Skip to main content

Title

Menu - Left

XslContent

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet
    version='1.0'
    xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
    xmlns:msxsl='urn:schemas-microsoft-com:xslt'
    xmlns:rs='urn:schemas-microsoft-com:rowset'
    xmlns:z='#RowsetSchema'
    xmlns:js='urn:custom-javascript'
    exclude-result-prefixes='msxsl js'
    xmlns:cs="urn:my-scripts"
  >
  <xsl:output method="xml" indent="yes"/>

  <xsl:template match="Pages">
    <xsl:if test="count(PageItem) != 0">
      <div class="containerdiv containerdiv-LV1">
        <ul class="container-LV1">
          <xsl:for-each select="PageItem">
            <li class="leftmenu leftmenu-1 leftmenu-index-1 leftmenu-LV1" >
              <h3><xsl:value-of select="@Title"/></h3>
              <div class="scroll_container scroll_menuleft ">
              <ul class="container-LV2">
              <xsl:for-each select="PageItem">
                <li>
                  <a href="{@Link}">
                    <span>
                      <xsl:value-of select="@Title"/>
                    </span>
                  </a>
                </li>
              </xsl:for-each>
              </ul>
              </div>
            </li>
          </xsl:for-each>
        </ul>
      </div>
    </xsl:if>
  </xsl:template>
</xsl:stylesheet>

Attachments

Created at 18/11/2014 5:28 CH by System Account
Last modified at 05/12/2014 3:10 CH by System Account