Advertisement
Guest User

Untitled

a guest
Aug 29th, 2016
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. img {
  2. padding: 0;
  3. display: block;
  4. margin: 0 auto auto 0;
  5. max-height: 100%;
  6. max-width: 100%;
  7. }
  8.  
  9. <ul class="items col-3 gap">
  10. {% for album in albums %}
  11. <li class="item thumb {{ album.day }}">
  12. <figure>
  13.  
  14. <div class="icon-overlay icn-link">
  15. <a href="{{ album.get_absolute_url }}"><img src="{{ album.get_image_url }}" /></a>
  16. </div><!-- /.icon-overlay -->
  17.  
  18. <figcaption class="bordered no-top-border">
  19. <div class="info">
  20. <h4><a href="{{ album.get_absolute_url }}">{{ album }}</a></h4>
  21. </div><!-- /.info -->
  22. </figcaption>
  23.  
  24. </figure>
  25. </li><!-- /.item -->
  26. {% endfor %}
  27. </ul><!-- /.items -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement