forked from GuvendeKal/guvendekal.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (44 loc) · 1.54 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
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Güvendekal.org</title>
<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"
/>
<!-- Stil dosyası -->
<link rel="stylesheet" href="css/style.css" />
<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>
</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>
<!-- Gece/gündüz modu -->
<script src="js/theme-toggle.js"></script>
<!-- Docsify eklentileri -->
<script src="//cdn.jsdelivr.net/npm/docsify-edit-on-github"></script>
<script src="js/github-edit.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
<script src="js/footer-plugin.js"></script>
<script src="//unpkg.com/docsify-pagination/dist/docsify-pagination.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify@4/lib/plugins/search.js"></script>
</body>
</html>