Advertisement
Guest User

Untitled

a guest
May 24th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.79 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
  3.       integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
  4. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  5. <html lang="en"></html>
  6.  
  7. {% load staticfiles %}
  8. {% load thumbnail %}
  9. {% block body_block %}
  10.  
  11.  
  12.     <div class="container">
  13.        
  14.  
  15.                 <div class="card-deck">
  16.  
  17.                     {% for thumbnail in thumb %}
  18.                         {% thumbnail thumbnail.image "150x150" crop='center' as img %}
  19.                             {% if forloop.counter|divisibleby:2 %}
  20.  
  21.                                 <div class="card">
  22.                                     <img class="card-img-top" src="{{ img.url }}" alt="Card image cap">
  23.                                     <div class="card-body">
  24.                                         <h5 class="card-title">Card title</h5>
  25.                                         <p class="card-text">This is a longer card with supporting text below as a
  26.                                             natural
  27.                                             lead-in
  28.                                             to additional content. This content is a little bit longer.</p>
  29.                                         <div class="card-footer">
  30.                                             <small class="text-muted">Last updated 3 mins ago</small>
  31.                                         </div>
  32.                                     </div>
  33.                                 </div>
  34.  
  35.                             {% endif %}
  36.                         {% endthumbnail %}
  37.  
  38.                     {% endfor %}
  39.                 </div>
  40.          
  41.     </div>
  42.  
  43. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement