Skip Ribbon Commands
Skip to main content
Attachments
  
  
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">
    <link rel="stylesheet" type="text/css" href="/Style Library/en-us/Core Styles/cms2013.css" />
    <xsl:if test="count(PageItem) != 0">

      <xsl:for-each select="PageItem">
        <div class="lvmenu-quantri" style="float:left;">
          <div class="newstop">
            <div class="newstopC">
              <xsl:value-of select="@Title"/>
            </div>
          </div>
          <div id="cpanel">
            <div class="lvmenu-quantri-item row">
              <xsl:for-each select="PageItem">
                <div class="icon-wrapper span2">
                  <div class="icon">
                    <a href="{@Link}">
                      <img alt="" src="{@IconURL}" />
                      <span>
                        <xsl:value-of select="@Title"/>
                      </span>
                    </a>
                  </div>
                </div>
              </xsl:for-each>
            </div>
          </div>
        </div>
      </xsl:for-each>
    </xsl:if>

  </xsl:template>
</xsl:stylesheet>
  
<?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>