Skip to content

Instantly share code, notes, and snippets.

@chrismrgn
Created July 14, 2016 02:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrismrgn/11c32e07301a208b2318ecb7b1179131 to your computer and use it in GitHub Desktop.
Save chrismrgn/11c32e07301a208b2318ecb7b1179131 to your computer and use it in GitHub Desktop.
Navigation View using the Sitemap classes for DD4T 2 Java
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<!-- View Models -->
<jsp:useBean id="navigationModel" type="com.xxx.xxx.xxx.Sitemap" scope="request"/>
<ul>
<c:forEach items="${navigationModel.getTopNavigation()}" var="item">
<li class="nav-cols">
<a href="#">${item.title}</a>
</li>
</c:forEach>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment