Advertisement
andkamen

Cheaty McCheatFace2

Feb 27th, 2017
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.95 KB | None | 0 0
  1. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  2.  
  3. <main>
  4.     <div class = "container body-content">
  5.         <div class = "row">
  6.             <c:forEach items = "${articles}" var="article">
  7.                 <div class="col-md-6">
  8.                     <article>
  9.                         <header>
  10.                             <h2>${article.title}</h2>
  11.                         </header>
  12.  
  13.                         <p>${article.summary}</p>
  14.  
  15.                         <small class="author">${article.author.fullName}</small>
  16.  
  17.                         <footer>
  18.                             <div class="pull-right">
  19.                                 <a class="btn btn-default btn-xs"
  20.                                   href="/articles/${article.id}">Read more</a>
  21.                             </div>
  22.                         </footer>
  23.                     </article>
  24.                 </div>
  25.             </c:forEach>
  26.         </div>
  27.     </div>
  28. </main>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement