This commit is contained in:
2023-12-25 02:09:05 +01:00
parent 512e04a3da
commit a12d9dd780
26 changed files with 17358 additions and 22 deletions

51
templates/terms.html Normal file
View File

@ -0,0 +1,51 @@
{% extends "base.html" %}
{% block title %}<title>Terms - Panso</title>{% endblock %}
{% block description %}Panso terms of service{% endblock %}
{% block keywords %}Panso, Panso.se, License, Terms{% endblock %}
{% block content %}
<div class="container">
<article>
<header>
<h1>Terms of Service</h1>
</header>
<section>
<h2>License</h2>
<p>
The content on this website is licensed under the
<a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons Attribution-ShareAlike 4.0 International License</a>.
</p>
</section>
<section>
<h2>You are free to:</h2>
<ul>
<li>Share — copy and redistribute the material in any medium or format</li>
<li>Adapt — remix, transform, and build upon the material for any purpose, even commercially.</li>
</ul>
</section>
<section>
<h2>Under the following terms:</h2>
<ul>
<li>
Attribution — You must give appropriate credit, provide a link to the license, and indicate if
changes were made. You may do so in any reasonable manner, but not in any way that suggests the
licensor endorses you or your use.
</li>
<li>
ShareAlike — If you remix, transform, or build upon the material, you must distribute your
contributions under the same license as the original.
</li>
<li>
No additional restrictions — You may not apply legal terms or technological measures that legally
restrict others from doing anything the license permits.
</li>
</ul>
</section>
<section>
<h2>Legal code:</h2>
<p>
The full legal code of the license can be found <a href="https://creativecommons.org/licenses/by-sa/4.0/legalcode">here</a>.
</p>
</section>
</article>
</div>
{% endblock %}