templates/licenses.html (view raw)
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 |
<!doctype html>
<html lang="en">
<head>
<title>Licenses</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="../static/banan_icon.png" />
<link rel="stylesheet" href="../static/global.css" />
<link rel="stylesheet" href="../static/centerbody.css" />
<link rel="stylesheet" href="../static/blog.css" />
</head>
<body>
<div>
<h1>Licenses</h1>
<p>
Except otherwise <a href="#attributions">noted</a>, <a href="https://crispy-caesus.eu">crispy website</a>'s contents © 2024-2026 by <a href="https://crispy-caesus.eu">crispy-caesus</a> are licensed under <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a>
<br>
Except otherwise <a href="#attributions">noted</a>, <a href="https://codeberg.org/crispy-caesus/crispy-website">crispy-website</a>'s source code © 2024-2026 by <a href="https://crispy-caesus.eu">crispy-caesus</a> is licensed under <a href="https://www.gnu.org/licenses/gpl-3.0.en.html">GPL-3.0</a>
<br><br>
</p>
<h2 id="attributions">Attributions</h2>
<p>
Some content of the website was not created by myself and thus has different attribution and potentially licensing.<br><br>
The project uses the <a href="https://github.com/golang/go">go programming lanuguage</a> and its standard libraries, which is licensed under <a href="https://opensource.org/license/BSD-3-Clause">BSD-3-Clause</a> 2009 by The Go Authors
<br><br>
banan.png and banan_icon.png in the static directory © 2024 by <a href="https://www.instagram.com/vannillapunkk/">VanillaPunkk</a> are licensed under <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a><br>
toothrush.png in the static directory © 2025 by <a href="https://www.instagram.com/vannillapunkk/">VanillaPunkk</a> is licensed under <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0</a>
</p>
<h2>Definitions</h2>
<p>
<b>This website</b><br>
This website refers to all files that are part of the source repository of crispy-website<br>
The source repository is the following: <a href=https://codeberg.org/crispy-caesus/crispy-website>https://codeberg.org/crispy-caesus/crispy-website</a>
<br>
<b>Contents</b><br>
The contents are generally assets (text, images, etc.) that are part of this website.
All files under the /blog, /templates and /static directories at the root of the source repository, excluding formatting (CSS, go templates and similar) are considered "contents".
<br>
<b>Source code</b><br>
The Source code refers to the code that serves and generates the website as well as the formatting of it.
The code is stored under /cmd while some of the formatting lives in the /static and /templates directories.
</p>
</div>
</body>
|