summaryrefslogtreecommitdiff
path: root/stapp/templates/video/home.html
diff options
context:
space:
mode:
Diffstat (limited to 'stapp/templates/video/home.html')
-rw-r--r--stapp/templates/video/home.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/stapp/templates/video/home.html b/stapp/templates/video/home.html
index d1da82d..c3ae717 100644
--- a/stapp/templates/video/home.html
+++ b/stapp/templates/video/home.html
@@ -29,11 +29,11 @@ function changeDetail(video,image,idname,iddesc)
{% endblock %}
{% block module_list %}
- <div class="row-fluid">
+ <div class="row-fluid module-row">
<h1>Latest Modules</h1>
{% for module in latest_modules %}
- <div class="module-list"><h3>{{module.name}}</h3>
- <h5>{{module.description|safe}}</h5>
+ <div class="module-list"><h3 class="title">{{module.name}}</h3>
+ <h5 class="module-description">{{module.description|safe}}</h5>
{% for video in module.video_list.all %}
<textarea style="display:none;" id=vdesclatest{{forloop.parentloop.counter}}{{forloop.counter}} >{{video.description}}
</textarea>
@@ -46,11 +46,11 @@ function changeDetail(video,image,idname,iddesc)
{% endfor %}
</div>
- <div class="row-fluid">
+ <div class="row-fluid module-row">
<h1>All Modules</h1>
{% for module in all_modules %}
<div class="module-list"><h3>{{module.name}}</h3>
- <h5>{{module.description|safe}}</h5>
+ <h5 class="module-description">{{module.description|safe}}</h5>
{% for video in module.video_list.all %}
<textarea style="display:none;" id=vdesc{{forloop.parentloop.counter}}{{forloop.counter}}>{{video.description}}
</textarea>