web-site-public-php/about_copyleft.php

30 lines
1.3 KiB
PHP

<?php
require_once $_SERVER["DOCUMENT_ROOT"]."/sys/site.php";
$page = Page::this("Copyleft");
require_once $_SERVER["DOCUMENT_ROOT"]."/sys/default_template.php";
default_template($page);
slot_begin("main"); ?>
<main>
<section id="summary">
<h1>The gist</h1>
<p>Almost everything on this Web site is <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY-NC-SA 4.0</a>.</p>
<p>Basically, you can do whatever you want with my stuff. I <b>encourage</b> you to repost it, edit it, anything you like! As long as you:</p>
<ul>
<li>Allow others to modify and redistribute your version, too.</li>
<li>Don't sell it, monetize it, or otherwise try to make money from it.</li>
<li>Credit me - it's as easy as saying "~keith made the original" and linking to this Web site.</li>
</ul>
</section>
<section id="sourcecode">
<h1>Source code</h1>
<p><b>However</b>, any code I publish is licensed under the <a href="https://www.gnu.org/licenses/agpl-3.0.html">GNU AGPLv3</a> instead (unless I say otherwise).</p>
</p>Essentially, this means that if you publish a modified version of my software, or a program that uses my software, you have to publish your source code along with it, under the same license. You also have to disclose the source code if you run my software as an online service.</p>
</section>
</main>
<?php slot_end(); ?>