summaryrefslogtreecommitdiff
path: root/stapp/templates/video/home.html
blob: ba84628432ccccd9ddc466df0f6e7c74847bf53e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{% extends "base.html" %}

<!DOCTYPE html>

{% block title %} STProject {% endblock %}

{% block video %}

<div class="hero-unit">
  <h3>Latest Video</h3>    
  <video width="700" height="400" controls="controls" id="mainvideo">
      <source src="{{play.filename.url}}">
  </video>
  <div id="footnote"></div>
</div>

{% for module in modules %}
<div class="row">
    <div span="12">
        <h2>{{module.name}}</h2>
        {% for video in module.video_list.all %}
            <video width="150" height="150" controls="controls">
                <source src="{{video.filename.url}}">
            </video>
            {{video.name}}
        {% endfor %}
    </div>
</div>
{% endfor %}
{% endblock%}