kellykamay

calendar_year

Aug 4th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.78 KB | None | 0 0
  1. //portion ng html
  2.  
  3. <div class="container-fluid">
  4.     <div id="calendar-box">
  5.         <div class="row">
  6.             <div class="paper-box"></div>
  7.         </div>
  8.     </div>
  9. </div>
  10. <script type="text/template" id="paper-holder">
  11.     <% _.each(stories, function(story) { %>
  12.         <div  class="col-xs-6 col-sm-3">
  13.                 <paper-card image="<%= story.chapters[0].data.thumbnails %>" class="white">
  14.                     <div class="card-content"><%= _.template.showmonth(story.latest_date) %></div>
  15.                 </paper-card>
  16.                  <ul>
  17.                     <% _.each(story.categories, function(category) { %>
  18.                         <li><%= _.template.showcatecolor(category)  %></li>
  19.                     <%});%>
  20.                 </ul>
  21.             </div>
  22.     <%});%>
  23. </script>
Add Comment
Please, Sign In to add comment