Advertisement
Guest User

Untitled

a guest
Jun 5th, 2013
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. <div class="slides">
  2. <% loop Images %>
  3. <div class="slide <%if not First %>hide<% end_if %>">
  4. <img src="$Image.URL" />
  5. <div class="caption pull-left">$Caption</div>
  6. <div class="dots pull-right">
  7. $ID // Prints 1, 2 depending on the iteration
  8. <% loop $Top.Images %>
  9. $Up.ID // $Up.ID ALWAYS prints 1 regardless of iteration
  10. <% if $ID == $Up.ID %>
  11. <img src="$ThemeDir/images/spot-blue.png" />
  12. <% else %>
  13. <img src="$ThemeDir/images/spot-black.png" />
  14. <% end_if %>
  15. <% end_loop %>
  16. </div>
  17. </div>
  18. <% end_loop %>
  19. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement