-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
57 lines (55 loc) · 1.92 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
<!-- index.html -->
<!DOCTYPE html>
<html>
<head>
<title>Women Who Code Manila Ruby 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/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 = {
name: 'Ruby Study Group',
// Women Who Code teal
themeColor: '#007a7b',
// Automatically scroll to top on page changes
auto2top: true,
// Page elements
coverpage: '_coverpage.html',
loadSidebar: true,
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>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<script src="//unpkg.com/prismjs/components/prism-ruby.min.js"></script>
<script src="//unpkg.com/docsify-copy-code"></script>
<script>
((window.gitter = {}).chat = {}).options = {
room: 'WWCodeManila/Ruby-On-Rails'
};
</script>
<script src="https://sidecar.gitter.im/dist/sidecar.v1.js" async defer></script>
</body>
</html>