My jsp fragments that Tiles is inserting start with the following:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> And then immediately after that use html/jsp like the following: <ol class="menu"> <li> <a href="search.zug">Search for a person</a> </li> ... This may be a silly/simple question, but can I add something to the top of the jsp fragments so that they're well formed xml and jsp, and not break tiles?
