playlist.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {% extends "/html/base.html" %}
  2. {% block content %}
  3. <div id="playlist">
  4. <h2>{{ page.title }}</h2>
  5. {% for video in page.playlist-items %}
  6. {% ifequal forloop.counter0|mod:3 0 %}
  7. <div class="row">
  8. {% endifequal %}
  9. <div class="col-md-4">
  10. <div class="card mb-4 box-shadow">
  11. <a href="{{ video.url }}">
  12. <img class="card-img-top"
  13. src="{{ video.video-thumbnail-url }}"
  14. alt="Thumbnail [100%x225]" style="height: 225px; width: 100%; display: block;"
  15. data-holder-rendered="true">
  16. </a>
  17. <div class="card-body">
  18. <p class="card-text"><a href="{{ video.url }}">{{ video.title }}</a></p>
  19. <div class="d-flex justify-content-between align-items-center">
  20. <div class="btn-group">
  21. <a href="{{ video.url }}"><button type="button" class="btn btn-sm btn-outline-secondary">View</button></a>
  22. </div>
  23. <small class="text-muted">9 mins</small>
  24. </div>
  25. </div>
  26. </div>
  27. </div>
  28. {% ifequal forloop.counter0|mod:3 2 %}
  29. </div>
  30. {% else %}
  31. {% if forloop.last %}
  32. </div>
  33. {% endif %}
  34. {% endifequal %}
  35. {% endfor %}
  36. </div>
  37. {% endblock %}