view bns_website/templates/videos/index.html @ 105:f3a275a53bc6

Use a local version of bootstrap 1.4.0. Twitter stopped hosting the version we were using.
author Brian Neal <bgneal@gmail.com>
date Tue, 15 Oct 2013 20:50:29 -0500
parents ee491a3f486d
children
line wrap: on
line source
{% extends 'base.html' %}
{% load core_tags %}
{% block title %}Watch{% endblock %}
{% block content %}
{% navbar 'videos' %}
<h1>Watch</h1>

{% if videos %}
<p>
Please enjoy this {{ videos|length }} video playlist of the bands that performed on the 
<em>Brave New Surf</em> compilation. Once you press play, you can use the playlist button
at the bottom of the player to scroll through all the videos.
</p>

<iframe id="ytplayer" type="text/html" width="853" height="480"
   src="http://www.youtube.com/embed/{{ videos|first }}?version=3&amp;playlist={{ videos|slice:"1:"|join:"," }}"
   frameborder="0"></iframe>

{% else %}
   <p>Videos of the bands are coming soon. Please check back later.</p>
{% endif %}
{% endblock %}