-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
80 lines (70 loc) · 2.17 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
<!DOCTYPE html>
<html lang="en" ng-app="swagger-editor">
<head>
<meta charset="utf-8">
<title>Swagger-Editor</title>
<link rel="shortcut icon" href="favicon.ico">
<link href="css/bootstrap.min.css" rel="stylesheet"></link>
<link href="css/bootstrap-responsive.min.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<style>
body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
overflow: scroll;
}
.main-menu ul {
background: #f5f5f5;
border: 1px solid #ccc;
}
.main-menu div { margin-bottom: 5px; }
.main-menu .nav-header {
color: #f06f4d;
border-bottom: 1px solid #ccc;
padding: 7px 15px;
}
.main-menu .nav li + .nav-header { margin-top: 0px; }
.main-menu .nav-list li a { border-top: 1px solid #fff; border-bottom: 1px solid #d5d5d5; }
.main-menu .nav-list li:last-child a { border-bottom-width: 0; }
</style>
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a href="#apis" class="brand"><b>Swagger-Editor</b></a>
<div class="nav-collapse">
<ul class="nav">
<li class="active"><a href="#apis">APIs</a></li>
<li><a href="#import">Import</a></li>
<li><a href="#export">Export</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row-fluid">
<div class="span8 offset1">
<div ng-view></div>
</div>
<div class="span3">
<div class="alert alert-info">
<h1><img src="img/info.png">
{{help.header}}
</h1>
<p>{{help.contents}}</p>
</div>
</div>
</div>
</div><!-- /container -->
<script src="js/jquery-1.7.1.min.js"></script>
<script src="js/jquery-ui-1.8.18.custom.min.js"></script>
<script src="js/jquery.textarea.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/showdown.js"></script>
<script src="js/angular.js"></script>
<script src="js/svc-apis.js"></script>
<script src="js/app.js"></script>
<script src="js/ctrl-apis.js"></script>
</body>
</html>