forked from GuvendeKal/guvendekal.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (70 loc) · 2.43 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
<!-- guvendekal.org -->
<!DOCTYPE html>
<html>
<head>
<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" />
<!-- Stil dosyası -->
<link rel="stylesheet" href="style.css">
<!-- İkonlar -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<!-- Site ikonu -->
<link rel="icon" href="docs/images/icon.png" type="image/png">
<!-- Tema -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple-dark.css" id="theme-style">
<!-- Github'da düzenle eklentisi -->
<script src="//cdn.jsdelivr.net/npm/docsify-edit-on-github"></script>
<!-- Font -->
<link href="https://fonts.cdnfonts.com/css/inter" rel="stylesheet">
<!-- Gece/gündüz modu -->
<script src="theme-toggle.js"></script>
<!-- Tema Özellikleri -->
<style>
:root {
--content-max-width: 85em;
--sidebar-nav-link-color--hover: #0b87da;
--sidebar-nav-link-text-decoration--hover: none;
--selection-color: rgba(11, 135, 218, 0.3);
--link-text-decoration-color--hover: #0b87da;
}
</style>
<!-- Gece/gündüz modu -->
</head>
<body>
<div id="theme-button">
<label class="switch">
<input type="checkbox" onchange="toggleTheme(this)">
<span class="slider"></span>
</label>
</div>
<div id="app"></div>
<!-- Docsify özellikleri -->
<script>
window.$docsify = {
basePath: './docs/',
loadSidebar: true,
sidebar: '_sidebar.md',
themeColor: '#0B87DA',
logo: 'images/logo.svg',
notFoundPage: '404.md',
pagination: {
previousText: 'Önceki Sayfa',
nextText: 'Sonraki Sayfa',
crossChapter: true,
crossChapterText: true,
},
plugins: [
EditOnGithubPlugin.create(
"https://github.com/GuvendeKal/guvendekal.org/tree/main/docs/",
"",
"📝 Dökümanı Düzenle")
]
};
</script>
<!-- Docsify eklentileri -->
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
<script src="footer-plugin.js"></script>
<script src="//unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
</body>
</html>