-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathindex.html
91 lines (85 loc) · 2.86 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
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<!--
UPDATE THIS:
Change to your study group name:
"Women Who Code Manila ____________ Study Group"
-->
<title>Women Who Code Manila ReactJS Study Group</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta charset="UTF-8" />
<link rel="icon" href="_media/favicon.png" type="image/x-icon" />
<link rel="stylesheet" href="//unpkg.com/docsify@4.11.3/themes/vue.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Montserrat"
/>
<link rel="stylesheet" href="_stylesheets/print.css" />
<link rel="stylesheet" href="_stylesheets/coverpage.css" />
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
/*
UPDATE THIS:
Change to your study group name.
This will be shown below the search bar in the sidebar
*/
name: "ReactJS Study Group",
// Women Who Code teal
themeColor: "#007a7b",
// Automatically scroll to top on page changes
auto2top: true,
// Page elements
coverpage: "_coverpage.html",
// Loads _sidebar.md
loadSidebar: true,
// Automatically adds title to pages
// ref: https://docsify.js.org/#/configuration?id=autoheader
autoHeader: true,
maxLevel: 4,
subMaxLevel: 2,
// Show when last updated
formatUpdated: "{YYYY}-{MM}-{DD} {HH}:{MM}",
plugins: [
// Show when last updated
function(hook, vm) {
hook.beforeEach(function(html) {
return (
html +
"\n----\n" +
"<strong>Document last modified</strong>: {docsify-updated}"
);
});
}
]
};
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<!-- Activates search -->
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<!-- Allows copying of embedded code to clipboard -->
<script src="//unpkg.com/docsify-copy-code"></script>
<!--
UPDATE THIS:
Only include the prism plugin you need for syntax highlighting.
You can check https://github.com/PrismJS/prism/tree/gh-pages/components for available syntax highlighters.
Check https://docsify.js.org/#/language-highlight for more details.
-->
<script src="//unpkg.com/prismjs/components/prism-ruby.min.js"></script>
<script>
((window.gitter = {}).chat = {}).options = {
room: "WWCodeManila/ReactJS"
};
</script>
<script
src="https://sidecar.gitter.im/dist/sidecar.v1.js"
async
defer
></script>
<script src="//unpkg.com/prismjs/components/prism-ruby.min.js"></script>
</body>
</html>