-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (104 loc) · 3.5 KB
/
index.html
File metadata and controls
117 lines (104 loc) · 3.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:type" content="website">
<meta property="og:url" content="https://llamawa.re/licenses">
<meta property="og:title" content="Custom Licenses">
<meta property="og:description" content="Custom software licenses by Llamaware.">
<title>Custom Licenses</title>
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: "Helvetica Neue", sans-serif;
background-color: #fdfdfd;
color: #333;
line-height: 1.6;
padding: 2rem;
}
.container {
max-width: 700px;
margin: 0 auto;
}
h1 {
font-size: 2rem;
margin-bottom: 1rem;
border-bottom: 2px solid #ddd;
padding-bottom: 0.5rem;
}
p {
margin-bottom: 1rem;
}
.downloads a {
display: inline-block;
margin-right: 1rem;
margin-top: 1rem;
text-decoration: none;
color: #0066cc;
border: 1px solid #ccc;
padding: 0.5rem 1rem;
border-radius: 4px;
transition: background 0.2s;
}
.downloads a:hover {
background-color: #eee;
}
footer {
margin-top: 4rem;
font-size: 0.9rem;
color: #777;
border-top: 1px solid #eee;
padding-top: 1rem;
}
</style>
</head>
<body>
<div class="container">
<h1>Netzach Public License</h1>
<p>
This is a custom software license based on the GPLv3. In addition to the basic copyleft requirements of the GPLv3, the Netzach Public License also prohibits redistribution of the software via any program or tool that is not also released under an open-source license.
</p>
<div class="downloads">
<a href="netzach/LICENSE.md" download>Download as .md</a>
<a href="netzach/LICENSE.txt" download>Download as .txt</a>
</div>
<h2>How to Use</h2>
<p>
Include the license in your repository by placing the license file at the root
of your project. Then attach the following notice to your program:
</p>
<pre><code><one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the Netzach Public License, version 1.0.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Netzach Public License for more details.
You should have received a copy of the Netzach Public License
along with this program. If not, see <https://llamawa.re/licenses/>,</code>
or contact the author.</pre>
<h1>Tsundere Public License</h1>
<p>
This is a variant of the MIT License that gives the same rights to the user, but in a tsundere style.
</p>
<div class="downloads">
<a href="tsundere/LICENSE.md" download>Download as .md</a>
<a href="tsundere/LICENSE.txt" download>Download as .txt</a>
</div>
<h2>How to Use</h2>
<p>
Include the license in your repository by placing the license file at the root
of your project. Reference it in your README with a line like:
</p>
<pre><code>Licensed under the Tsundere Public License. See LICENSE.md for details.</code></pre>
<footer>
© 2025 Llamaware. All rights reserved. Do not steal or I'll fight you.
</footer>
</div>
</body>
</html>