-
Notifications
You must be signed in to change notification settings - Fork 25
/
index.html
60 lines (59 loc) · 2.25 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
<!DOCTYPE html>
<html>
<head>
<title>Women Who Code Manila Python 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 = {
// This will be shown below the search bar in the sidebar
name: 'Python 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>
<!--
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-python.min.js"></script>
</body>
</html>