-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
83 lines (83 loc) · 3.72 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
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>chi</title>
<link rel="icon" href="favicon.ico" />
<script src="jquery-2.1.4.js"></script>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="keywords" content="docs,documentation,go-chi,chi,router,api,go-router,rest-api,golang,microservice" />
<meta property="og:title" content="go-chi docs" />
<meta property="og:type" content="website" />
<meta property="og:description" content="A lightweight, idiomatic and composable router for building Go HTTP services." />
<meta name="description" content="Documentation for go-chi, a lightweight, idiomatic and composable router for building Go HTTP services." />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<meta property="og:image" content="https://raw.githubusercontent.com/go-chi/chi/master/docs/assets/chi.png" />
<meta name="twitter:card" content="summary_large_image">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-darklight-theme@3/dist/style.min.css" integrity="sha256-iCuOxtYWNr4wPKxT7rWzyHs8b8JcY7hK++1DtQ5S8uM=" crossorigin="anonymous">
<link rel="stylesheet" media="(prefers-color-scheme: dark)" href="//cdn.jsdelivr.net/npm/prism-themes@1/themes/prism-one-dark.min.css"/>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/styles.css" />
</head>
<body>
<div id="app">
<div class="loader-wrapper">
<span class="loader"><span class="loader-inner"></span></span>
</div>
</div>
<script>
$(window).on("load",function(){
$(".loader-wrapper").fadeOut("slow");
});
</script>
<!-- set dark mode if not already set -->
<script>
if (!localStorage.getItem('DARK_LIGHT_THEME')){
localStorage.setItem('DARK_LIGHT_THEME', 'dark');
}
</script>
<script>
window.$docsify = {
name: 'chi',
repo: 'go-chi/chi',
loadSidebar: true,
subMaxLevel: 3,
coverpage: true,
onlyCover: true,
auto2top: true,
homepage: 'README.md',
logo: 'https://cdn.rawgit.com/go-chi/chi/master/_examples/chi.svg',
themeColor: '#14b853',
darklightTheme: {
defaultTheme : 'dark',
codeFontFamily : 'Roboto Mono, Monaco, courier, monospace',
siteFont : "PT Sans",
dark: {
textColor: '#ffffff',
blockQuoteColor: '#999999',
coverBackground : '##091a28',
},
light: {
coverBackground : '#fafafa',
}
},
search: {
paths: 'auto',
placeholder: 'Search',
noData: 'No Results.'
},
routerMode: 'hash'
};
</script>
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-darklight-theme@3/dist/index.min.js" integrity="sha256-u0+KcSs8hp4Wdux9vSi71vUSR1brxvnxL+2I5Vfie+0=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-copy-code@2/dist/docsify-copy-code.min.js" integrity="sha256-8RM7T/q4FqeRqHqvRITDUFPFrMuFyE+PpeaFpdLM0Fw=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/components/prism-go.min.js" integrity="sha256-jMFHuzUuIKDkiWxVNKgt9Pb+39LspOzv3+atXNO3SNo=" crossorigin="anonymous"></script>
<script src="//unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
</body>
</html>