-
Notifications
You must be signed in to change notification settings - Fork 66
/
index.html
82 lines (72 loc) · 2.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Conjure: a code-generator for multi-language HTTP/JSON clients and servers</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<link rel="shortcut icon" type="image/ico" href="docs/media/favicon.ico" />
<meta name="description" content="Strongly typed HTTP/JSON APIs for browsers and microservices">
<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="docs/media/style.css">
<link rel="stylesheet" href="//prismjs.com/themes/prism.css" />
<style type="text/css">
#readme-logo {
/* intentionally disabled to avoid showing two logos in github pages */
display: none;
}
section.cover.show {
/* docsify randomizes backgrounds */
background: #F5F8FA !important;
/* coverpage content can be taller than the screen on mobile */
height: auto;
min-height: 100vh;
}
section.cover .cover-main {
/* ensures the logo doesn't get cut off on small screens */
margin-top: 4px;
}
section.cover ul {
max-width: 60%;
}
section.cover ul li {
text-align: left;
}
@media only screen and (min-width: 600px) {
section.cover ul {
display: grid;
grid-column-gap: 16px;
grid-template-columns: repeat(2, 50%);
}
section.cover ul li:nth-child(odd) {
text-align: right;
}
}
aside.sidebar strong>a {
font-weight: bold;
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'Conjure',
basePath: '/conjure/',
repo: 'palantir/conjure',
homepage: './readme.md',
coverpage: './_coverpage.md',
loadSidebar: true,
subMaxLevel: 2,
auto2top: true,
routerMode: 'hash' // prefer 'hash' over 'history' otherwise refreshing the page won't work!
}
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-diff.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-groovy.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-java.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-typescript.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-yaml.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-json.min.js"></script>
</body>
</html>