This repository was archived by the owner on Apr 13, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (103 loc) · 3.19 KB
/
Copy pathindex.html
File metadata and controls
110 lines (103 loc) · 3.19 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Atlas Framework Docs</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css">
<link rel="Icon" type="image/png" href="./logo.png" />
<style>
:root {
--copycode-background: #384757;
--copycode-color: #fff;
--base-background-color: #020f1a;
--sidebar-background: #131C26;
--sidebar-width: 16rem;
--sidebar-toggle-background: #384757;
}
::-webkit-scrollbar {
width: 0.8vh;
}
::-webkit-scrollbar-track {
border-radius: 0px;
background-color: #0a253b;
}
::-webkit-scrollbar-thumb {
background: #005ba6;
}
::-webkit-scrollbar-thumb:hover {
background: #0e6fbe;
}
</style>
</head>
<body>
<div id="app">Page does not exist...</div>
<script>
this.localStorage.clear()
window.$docsify = {
homepage: '/intro.md',
themeColor: '#005ba6',
name: 'Atlas Framework Docs',
repo: 'AtlasFw/atlasfw.github.io',
fallbackLanguages: ['en'],
loadSidebar: true,
relativePath: true,
auto2top: true,
autoHeader: true,
maxLevel: 8,
subMaxLevel: 2,
routerMode: 'history', // Comment this line out when adding more documentation
search: {
maxAge: 86400000,
paths: 'auto',
placeholder: {
'/es/': 'Escribe para buscar...',
'/en/': 'Type to search...',
'/fr/': 'Tapez pour rechercher...',
},
noData: {
'/es/': 'No se encontraron resultados...',
'/fr/': 'Aucun résultat n\'a pu être trouvé...',
'/en/': 'Could not find results...',
},
depth: 6,
},
notFoundPage: {
'/en': 'en/_404.md',
'/fr': 'fr/_404.md',
'/es': 'es/_404.md',
},
copyCode: {
buttonText: {
'/en/': 'Copy to clipboard',
'/fr/': 'Copier dans le presse-papiers',
'/es/': 'Copiar al portapapeles',
},
errorText: {
'/en/': 'Error copying!',
'/fr/': 'Une erreur est survenue lors de la copie',
'/es/': '¡Error al copiar!',
},
successText: {
'/en/': 'Copied to clipboard!',
'/fr/': 'Copié dans le presse-papiers !',
'/es/': 'Copiado en el portapapeles.',
},
},
themeable: {
readyTransition: true,
responsiveTables: true
}
}
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-copy-code"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/zoom-image.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/js/docsify-themeable.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1/components/prism-lua.min.js"></script>
</body>
</html>