Skip to content

Instantly share code, notes, and snippets.

@kshepp
Created February 19, 2016 15:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kshepp/63ce8bd1208d3be0d330 to your computer and use it in GitHub Desktop.
Save kshepp/63ce8bd1208d3be0d330 to your computer and use it in GitHub Desktop.
<ul class="bxslider">
{% for medium in media %}
<div class="item {% if forloop.first %} active {% endif %}">
{% if medium.mediaType == 'video' %}
<li>
<iframe width="640" height="360" src="{{medium.mediaLink}}" frameborder="0" allowfullscreen>
</iframe>
</li>
{% endif %}
</div>
{% endfor %}
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment