-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
50 lines (45 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Start Testing</title>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta
name="description"
content="A community-driven testing course, because the best way to learn is to teach."
/>
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<link
rel="stylesheet"
href="//cdn.jsdelivr.net/npm/docsify/lib/themes/vue.css"
/>
<script src="//unpkg.com/docsify-edit-on-github@1.0.3/index.js"></script>
</head>
<body>
<div id="app">Loading…</div>
<script>
window.$docsify = {
homepage: "index.md",
name: "Start Testing",
repo: "https://github.com/dialex/start-testing",
gtag: "G-385353708",
coverpage: true,
loadSidebar: true,
subMaxLevel: 1,
auto2top: true,
plugins: [
EditOnGithubPlugin.create(
"https://github.com/dialex/start-testing/tree/main/docs/"
),
],
alias: {
"/.*/_sidebar.md": "/_sidebar.md",
},
};
</script>
<script src="//unpkg.com/docsify@4.13.1/lib/docsify.min.js"></script>
</body>
</html>