-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutput.html
More file actions
20 lines (20 loc) · 899 Bytes
/
output.html
File metadata and controls
20 lines (20 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE HTML>
<html>
<head>
<title>Output</title>
<link type="text/css" href="{{ url_for('static', filename= 'css/main.css') }}" rel="stylesheet" />
<link type="text/css" href="{{ url_for('static', filename= 'css/Site.css') }}" rel="stylesheet" />
<script src="{{ url_for('static', filename= 'js/jquery.js') }}"></script>
<script src="{{ url_for('static', filename= 'js/underscore.js') }}"></script>
<script src="{{ url_for('static', filename= 'js/backbone.js') }}"></script>
<script src="{{ url_for('static', filename= 'js/main.js') }}"></script>
<script src="{{ url_for('static', filename= 'js/output.js') }}"></script>
</head>
<body>
{% include 'header.html' %}
<div id="body">
<section id="content" class="content-wrapper main-content clear-fix">
</section>
</div>
</body>
</html>