Skip to content

Instantly share code, notes, and snippets.

@staypufd
Created August 27, 2014 17:02
Show Gist options
  • Save staypufd/059afe6b47cfd06637da to your computer and use it in GitHub Desktop.
Save staypufd/059afe6b47cfd06637da to your computer and use it in GitHub Desktop.
<table class="table table-striped">
<c:forEach items="${theQuotes }" var="aQuote">
<tr>
<td>
<blockquote class="blockquote">
<p>${aQuote.quote }</p>
<footer>
<c:out value="${aQuote.author }"/>
</footer>
</blockquote>
</td>
</tr>
</c:forEach>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment