-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathindex.html
52 lines (48 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Avastars Contracts</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Ethereum-based collectible avatars with on-chain artwork">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1.0, shrink-to-fit=no, viewport-fit=cover">
<link rel="shortcut icon" href="media/favicon.ico">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css">
<style>
:root {
--base-font-size: 14px;
--theme-color : #512FDC;
--cover-heading-color : #0d0d16;
--cover-color: #512FDC;
--code-block-margin : 1em 0;
--code-block-padding : 1.75em 1.5em 1.5em 1.5em;
}
</style>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
auto2top: true,
themeColor: '#512FDC',
loadSidebar: 'sidebar.md',
coverpage : 'coverpage.md',
homepage: 'project/DeveloperSetup.md',
notFoundPage: true,
logo: '/media/logo.svg',
repo: 'https://github.com/Dapp-Wizards/Avastars-Contracts',
requestHeaders: {
'Cache-Control': 'no-store',
'Cache-Control': 'max-age=0'
},
name: 'Avastars Contracts'
}
</script>
<script src="https://cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-pagination@2/dist/docsify-pagination.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-tabs@1"></script>
<script src="//unpkg.com/docsify/lib/plugins/zoom-image.min.js"></script>
<script src="media/prism-solidity.min.js"></script>
</body>
</html>