Skip to content

Instantly share code, notes, and snippets.

@jdlich
Created January 15, 2011 00:00
Show Gist options
  • Save jdlich/780537 to your computer and use it in GitHub Desktop.
Save jdlich/780537 to your computer and use it in GitHub Desktop.
<xsl:for-each select="$ALL_GROUPS">
<!-- <xsl:if test="count(channel) > 0"> -->
<div id="tab-section_{navblock/@ID}" class="fl-container fl-container-autoHeading">
<h3><xsl:value-of select="navblock/@name"/></h3>
<ul class="fl-list-menu fl-list-brief">
<xsl:for-each select="channel">
<li>
<xsl:if test="navblock/@name == 'Course Catalog'">
<a class="flc-screenNavigator-backButton" href="/students/courses">Course Catalog</a>
</xsl:if>
<xsl:if test="navblock/@name == 'Faculty/Staff'">
<a class="flc-screenNavigator-backButton" href="/faculty">Faculty/Staff</a>
</xsl:if>
<a class="flc-screenNavigator-backButton" href="{$BASE_ACTION_URL}?uP_root={@ID}" title="To view {@name}">
<xsl:value-of select="@name" />
</a>
</li>
</xsl:for-each>
</ul>
</div>
<!-- </xsl:if> -->
</xsl:for-each>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment