-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRESTful.html
More file actions
36 lines (34 loc) · 748 Bytes
/
Copy pathRESTful.html
File metadata and controls
36 lines (34 loc) · 748 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>RESTful Routes</title>
<!-- <link rel="stylesheet" type="text/css" href="bootstrap.css"> -->
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-lg-1"></div>
<div class="col-lg-10">
<div class="jumbotron">
<h1>RESTful Routes</h1>
</div>
<table class="table table-hover table-bordered">
<thead>
<tr>
<th>Name</th>
<th>Path</th>
<th>HTTP Verb</th>
<th>Purpose</th>
<th>Mongoose Method</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div class="col-lg-1"></div>
</div>
</div>
</body>
</html>