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