-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
executable file
·92 lines (82 loc) · 3.14 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Data ADICU</title>
<link href="{{url_for('static', filename='./css/bootstrap.min.css')}}" rel="stylesheet">
<link href="{{url_for('static', filename='./css/bootstrap-responsive.min.css')}}" rel="stylesheet">
<link href="{{url_for('static', filename='./css/bootstrap-responsive-fluid.css')}}" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"></script>
<link href="{{url_for('static', filename='./css/preview.css')}}" rel="stylesheet">
<link href="{{url_for('static', filename='./css/prometheus.css')}}" rel="stylesheet">
<link href="{{url_for('static', filename='./css/menu.css')}}" rel="stylesheet">
</head>
<body>
<!-- ========================
Header
============================= -->
<header>
<div class="navbar navbar-inverse">
<div class="navbar-inner">
<div class="container">
<a class="logo" href="#">Data@CU</a>
<div class="nav-collapse collapse">
<ul class="profileBar visible-desktop">
{% if True %}
<li class="profile">
<a href="/login">Log In</a>
</li>
{% endif %}
{% if verified %}
<li class="profile">
<a href="/login">{{username}}</a>
</li>
{% endif %}
</ul>
</div>
</div>
</div>
</div>
</header>
<!-- ========================
Sidebar
============================= -->
<aside class="visible-desktop">
<ul class="sideMenu">
<li ><a href="auth">Authentication</a>
</li>
<li ><a href="courses">Courses</a>
</li>
<li ><a href="residences">Residences</a>
</li>
<li ><a href="dining">Dining</a>
</li>
<li ><a href="docs">Documentation</a>
</li>
</ul>
</aside>
<!-- ========================
Content
============================= -->
{% block page %}
<div id="content" class="container-fluid">
<div class="row-fluid">
<div class="span12">
<section id="Documentation">
<h1 class="center">Documentation</h1>
<hr>
<p class="lead">Documentation for the set of Data API's provided by, and maintained by the Application Development Initative at Columbia University. Visit the different endpoints, get your api token, and start coding. There is some exciting stuff around there!
If you have any setbacks, feel free to ping [email protected] and we'll get back to you as quick as we can. Please keep in mind this is API version 0.1 and is pretty rough and the edges. Report bugs, and help us make it better at github.com/adicu/data.adicu.com</p>
</section>
</div>
</div>
</div>
{% endblock %}
<!-- ========================
Javascripts
============================= -->
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="{{url_for('static', filename='main.js')}}"></script>
<script src="{{url_for('static', filename='bootstrap.min.js')}}"></script>
</body>
</html>