-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathindex.html
39 lines (34 loc) · 1.26 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
<!DOCTYPE html>
<!-- main vue app -->
<html lang="en" id="docs" v-on:click="closeDropdownsAndPopovers">
<head>
<title v-text="pageTitle">Vuestrap Docs</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="assets/favicon.ico" rel="shortcut icon" type="image/x-icon">
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.9.1/styles/tomorrow.min.css">
<style>
[v-cloak] {
display: none;
}
</style>
</head>
<body v-cloak>
<!-- offcanvas wrapper -->
<vs-offcanvas-wrapper id="main" animation="ease" align="right">
<vs-offcanvas-drawer>
<!-- mobile drawer with navbar -->
<vs-docs-drawer :routes="routes" :pkg="pkg"></vs-docs-drawer>
</vs-offcanvas-drawer>
<!-- desktop content -->
<div id="docs-pages">
<vs-docs-pages :routes="routes" :page-title.sync="pageTitle" :pkg="pkg"></vs-docs-pages>
</div>
</vs-offcanvas-wrapper>
<!-- footer -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/1.0.16/vue.js"></script>
<script src="dist/docs.js"></script>
</body>
</html>