-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
30 lines (26 loc) · 867 Bytes
/
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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>BSK | Example</title>
<link rel="stylesheet" href="dist/css/mdi.css" />
<link rel="stylesheet" href="dist/css/app.css" />
</head>
<body>
<div id="app"></div>
<a href="#books/1">Get</a>
<br />
<a href="#books">Get All</a>
<br />
<a href="#books/search">Search</a>
<br />
<a href="#books/create">Create</a>
<br />
<a href="#books/edit/1">Update</a>
<br />
<a href="#books/destroy/1">Destroy</a>
<script src="dist/js/app.js"></script>
</body>
</html>