Created
August 27, 2014 17:02
-
-
Save staypufd/059afe6b47cfd06637da to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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