-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (76 loc) · 3.81 KB
/
index.html
File metadata and controls
83 lines (76 loc) · 3.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<!-- favicon -->
<link rel="icon" type="image/x-icon" href="/fav.ico">
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="Docs -First Accord" />
<meta itemprop="description" content="Explore the comprehensive guide on how to contribute to First Accord. Learn about participation guidelines, contribution steps, and collaboration tools to make a meaningful impact" />
<meta itemprop="image" content="https://raw.githubusercontent.com/STICKnoLOGIC/First-Accord/refs/heads/gh-pages/og_image.png" />
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://First-Accord.js.org/docs" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Docs - First Accord" />
<meta property="og:description" content="Explore the comprehensive guide on how to contribute to First Accord. Learn about participation guidelines, contribution steps, and collaboration tools to make a meaningful impact" />
<meta property="og:image" content="https://raw.githubusercontent.com/STICKnoLOGIC/First-Accord/refs/heads/gh-pages/og_image.png" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Docs - First Accord" />
<meta name="twitter:description" content="Explore the comprehensive guide on how to contribute to First Accord. Learn about participation guidelines, contribution steps, and collaboration tools to make a meaningful impact" />
<meta name="twitter:image" content="https://raw.githubusercontent.com/STICKnoLOGIC/First-Accord/refs/heads/gh-pages/og_image.png" />
<!-- Apple Meta Tags -->
<meta name="apple-mobile-web-app-title" content="Docs - First Accord" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css" integrity="sha512-Evv84Mr4kqVGRNSgIGL/F/aIDqQb7xQ2vcrdIwxfjThSH8CSR7PBEakCr51Ck+w+/U6swU2Im1vVX0SVk9ABhg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<style>
* {
opacity: 0;
}
</style>
<script>
var file = location.pathname.split( "/" ).pop();
var link = document.createElement( "link" );
link.type = "text/css";
link.rel = "stylesheet";
if(localStorage.getItem('snl_fa_theme')==='true'){
link.href = '/styles/habilight.css';
}else{
link.href = '/styles/darcula.css';
}
document.getElementsByTagName( "head" )[0].appendChild( link );
</script>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
homepage: 'Home.md',
name: 'Docs - First Accord',
repo: 'https://github.com/STICKnoLOGIC/First-Accord',
loadSidebar:true,
subMaxLevel: 3,
alias: {
'/.*/_sidebar.md': '/_sidebar.md'
},
loadNavbar: true,
'flexibleAlerts': {
style: 'callout'
},
auto2top: true,
search:'auto',
basePath: 'https://raw.githubusercontent.com/sticknologic/first-accord-docs/main/', //Comment This LINE to test the Docs Locally
}
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1.29.0/components/prism-bash.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1.29.0/components/prism-json.js"></script>
<script src="//unpkg.com/docsify-plugin-flexible-alerts"></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>