forked from katorlys/katorlys.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlicense.html
More file actions
122 lines (106 loc) · 5.28 KB
/
license.html
File metadata and controls
122 lines (106 loc) · 5.28 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<title>License - Katorly Lab</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS -->
<link rel="stylesheet" href="assets/css/soft-design-system.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<!-- JS -->
<script type="text/javascript" src="assets/js/bootstrap.bundle.min.js"></script>
<script type="text/javascript" src="assets/js/soft-design-system.min.js"></script>
<script type="text/javascript" src="assets/js/jquery.min.js"></script>
<script type="text/javascript" src="assets/js/script.js"></script>
<!-- CACHE -->
<meta http-equiv="Cache-Control" content="max-age=86400 must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<!-- Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Z2Q2Z42WL2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-Z2Q2Z42WL2');
</script>
<!-- FONTS -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@300&display=swap" rel="stylesheet">
<!-- FAVICON -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<div class="loader"></div>
<div class="content">
<!-- Header -->
<div id="header"></div>
<!-- Intro -->
<div id="intro" class="kl-bg text-light p-5 mb-4" style="background-image:url(img/copyright_bg.jpg)">
<div class="container-fluid col-xxl-11 py-3">
<p class="col-md-8 text-sm pb-2"><a href="/index.html" class="link-secondary">Portal</a> /
Licenses</p>
<h1 class="display-5 fw-bold text-light">Licenses</h1>
</div>
</div>
<!-- !Intro -->
<!-- Message -->
<div class="container col-xxl-8 px-4 pt-2 pb-5">
<div class="row flex-lg-row align-items-center g-5 py-5">
<div class="col-lg-12">
<p class="text-dark lead mb-0 px-3 pb-2">
© <strong>Katorly Lab</strong>. All content is copyright protected.
</p>
<p class="text-dark lead mb-0 px-3 py-2">
"Katorly Lab", "Katorly Lab for Insiders", "Katorly Code Lab", "Katorly Dev", "katorlys", and
their
logos and marks are original by <a class="link-dark text-decoration-underline" target="_blank"
href="https://github.com/katorly">Katorly</a>. Do not use, copy, modify, or distribute. All
rights reserved.
</p>
<p class="text-dark lead mb-0 px-3 py-2">
<strong>All codes from Katorly Lab licensed <a class="link-dark text-decoration-underline"
target="_blank" href="https://www.gnu.org/licenses/gpl-3.0.html">GPLv3</a>, contents <a
class="link-dark text-decoration-underline" target="_blank"
href="http://creativecommons.org/licenses/by-nc-nd/4.0">CC BY-NC-ND 4.0</a>, except
where
otherwise noted.</strong>
</p>
<p class="text-dark lead mb-0 px-3 py-2">
All other trademarks and copyrights are the property of their respective owners.
</p>
</div>
</div>
</div>
<!-- /Message -->
<!-- Contents -->
<div class="buttons">
<a type="button" target="_blank" href="https://github.com/katorlys/HelpCenter/wiki#licenses"
class="btn btn-rounded btn-icon-only position-fixed bottom-5 end-5" style="background-color: #24292F;"
data-bs-toggle="tooltip" data-bs-placement="left" title="View on Github">
<img width="16px" height="auto" class="pb-1" src="/img/viewongithub.svg">
</a>
</div>
<script>
var tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]'))
var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) {
return new bootstrap.Tooltip(tooltipTriggerEl)
})
</script>
<!-- /Contents -->
<!-- Footer -->
<div id="footer"></div>
<!-- INCLUDES -->
<script type="text/javascript">
$("#header").load("assets/components/nav.html #header");
$("#footer").load("assets/components/nav.html #footer");
</script>
</div>
</body>
</html>