summaryrefslogtreecommitdiff
path: root/sbhs/templates/pages/theory.html
blob: e94e10dd125630aaeeaa27cfe7fa9a7ed37668ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "base.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>Theory</h2>             
            <br>
	    <br>
	    <iframe src="{% static 'data/theory.pdf' %}" width="100%" height="900px" ></iframe>
            <br>
        </div>
    </div>
</div>
{% endblock %}