blob: 06b183dd27ae133bda75983df5ed44ead0b814b2 (
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>Theory</h2>
<br>
<br>
<iframe src="{% static 'data/theory.pdf' %}" width="100%" height="900px" ></iframe>
<br>
</div>
</div>
</div>
{% endblock %}
|