Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. <div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
  2. <ol class="carousel-indicators">
  3. <li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
  4. <li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
  5. <li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
  6. </ol>
  7. <div class="carousel-inner">
  8. {% for post in site.posts limit:1 %}
  9. <div class="carousel-item active">
  10. {% assign image = post.content | split:"!-- ![header](" %}
  11. {% assign html = image[1] | split:") -->" | first %}
  12. {% if html and html != "" %}
  13. <img class="d-block img-fluid w-100" src="{{ html }}" alt="First slide">
  14. {% endif %}
  15. </div>
  16. {% endfor %}
  17. {% for post in site.posts offset: 1 limit:2 %}
  18. <div class="carousel-item">
  19. {% assign image = post.content | split:"!-- ![header](" %}
  20. {% assign html = image[1] | split:") -->" | first %}
  21. {% if html and html != "" %}
  22. <img class="d-block img-fluid w-100" src="{{ html }}" alt="Second slide">
  23. {% endif %}
  24. </div>
  25. {% endfor %}
  26. </div>
  27. <a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
  28. <span class="carousel-control-prev-icon" aria-hidden="true"></span>
  29. <span class="sr-only">Previous</span>
  30. </a>
  31. <a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
  32. <span class="carousel-control-next-icon" aria-hidden="true"></span>
  33. <span class="sr-only">Next</span>
  34. </a>
  35. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement