diff options
author | ttt | 2017-05-13 00:29:47 +0530 |
---|---|---|
committer | ttt | 2017-05-13 00:29:47 +0530 |
commit | 4336f5f06f61de30ae3fa54650fce63a9d5ef5be (patch) | |
tree | 23b4ee9b8e8f24bf732acf2f7ad22ed50cdd5670 /templates/pages/procedure.html | |
download | SBHS-2018-Rpi-4336f5f06f61de30ae3fa54650fce63a9d5ef5be.tar.gz SBHS-2018-Rpi-4336f5f06f61de30ae3fa54650fce63a9d5ef5be.tar.bz2 SBHS-2018-Rpi-4336f5f06f61de30ae3fa54650fce63a9d5ef5be.zip |
added all server files
Diffstat (limited to 'templates/pages/procedure.html')
-rw-r--r-- | templates/pages/procedure.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/templates/pages/procedure.html b/templates/pages/procedure.html new file mode 100644 index 0000000..c191a1f --- /dev/null +++ b/templates/pages/procedure.html @@ -0,0 +1,32 @@ +{% extends "layout.html" %} +{% load staticfiles %} + +{% block content %} + +<div class="container"> + <div class="row"> + {% if user.is_authenticated %} + {% include 'account/sub_nav.html' %} + {% endif %} + <div class="span12"> + <h2>Procedure</h2> + <h4> + <strong>See the spoken tutorial on how to use SBHS virtual labs</strong> + </h4> + <center> + <div class="embed-responsive embed-responsive-16by9"> + <iframe width="500" height="300" src="https://www.youtube.com/embed/Ax7lYwQctog" frameborder="0" allowfullscreen></iframe> + </div> + </center><br> + <h4> + <strong>For more information please read the pdf</strong> + </h4> + <center> + <div class="embed-responsive embed-responsive-16by9"> + <iframe src="{% static 'data/procedure.pdf' %}" width="100%" height="900px"></iframe><br> + </div> + </center> + </div> + </div> +</div> +{% endblock %} |