summaryrefslogtreecommitdiff
path: root/legal/license/index.php
blob: 5eae5a3ef8fd9a0bc95c9edd9569b3a96f495c9c (plain)
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
<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/lang.php"; $title = l("lang.legal.license.title"); require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/header.php"; $status = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/status.json"), true); ?>

<div class="container" id="legal-container">
    <div id="legal-container-inner">
        <h1><?= l("lang.legal.license.bigtitle") ?></h1>
        <p><?= l("lang.legal.license.intro") ?></p>

        <h2><?= l("lang.legal.license.sections.0") ?></h2>
        <p><?= l("lang.legal.license.text.0.0") ?></p>

        <div id="legal-license">
            <p>Equestria.dev Free, Libre and Open-Source Software<br>
                Copyright (C) 2011-<?= date('Y') ?> Equestria.dev Developers</p>

            <p>This program is free software: you can redistribute it and/or modify
                it under the terms of the GNU Affero General Public License as published
                by the Free Software Foundation, either version 3 of the License, or
                (at your option) any later version.</p>

            <p>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
                GNU Affero General Public License for more details.</p>

            <p>You should have received a copy of the GNU Affero General Public License
                along with this program.  If not, see &lt;<a target="_blank" class="legal-link" href="https://www.gnu.org/licenses/">https://www.gnu.org/licenses/</a>&gt;.</p>
        </div>

        <h2><?= l("lang.legal.license.sections.1") ?></h2>
        <p><?= l("lang.legal.license.text.1.0") ?></p>
        <p><?= l("lang.legal.license.text.1.1") ?></p>
        <p><?= l("lang.legal.license.text.1.2") ?></p>

        <ul>
            <li><?= l("lang.legal.license.text.1.3") ?></li>
            <li><?= l("lang.legal.license.text.1.4") ?></li>
            <li><?= l("lang.legal.license.text.1.5") ?></li>
            <li><?= l("lang.legal.license.text.1.6") ?></li>
            <li><?= l("lang.legal.license.text.1.7") ?></li>
        </ul>

        <p><?= l("lang.legal.license.text.1.8") ?></p>

        <?php if (lp() !== "en"): ?>
        <hr>
        <p><i><b><?= l("lang.legal.license.translation.0") ?></b> <?= l("lang.legal.license.translation.1") ?></i></p>
        <?php endif; ?>
    </div>
</div>

<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/footer.php"; ?>