writesdown/app-cms

View on GitHub
backend/views/site/terms.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * @link http://www.writesdown.com/
 * @author Agiel K. Saputra <13nightevil@gmail.com>
 * @copyright Copyright (c) 2015 WritesDown
 * @license http://www.writesdown.com/license/
 */

/* @var $this yii\web\View */

$this->title = Yii::t('writesdown', 'Terms and Conditions');
?>
<div class="container">
    <div id="site-terms-conditions" class="box box-primary">
        <div class="box-header with-border">
            <h1 class="box-title"><?= $this->title ?></h1>

        </div>
        <div class="box-body" style="display: block;">
            <p style="text-align: justify;">
                The WritesDown is free software. It is released under the terms of the following BSD License.
            </p>
            <p style="text-align: justify;">Copyright &copy; 2015 by WritesDown All rights reserved.</p>
            <p style="text-align: justify;">
                Redistribution and use in source and binary forms, with or without modification, are permitted provided
                that the following conditions are met:
            </p>
            <ul style="text-align: justify;">
                <li>
                    Redistributions of source code must retain the above copyright notice, this list of conditions and
                    the following disclaimer.
                </li>
                <li>
                    Redistributions in binary form must reproduce the above copyright notice, this list of conditionsand
                    the following disclaimer in the documentation and/or other materials provided with the
                    distribution.
                </li>
                <li>
                    Neither the name of WritesDown nor the names of its contributors may be used to endorse or
                    promote products derived from this software without specific prior written permission.
                </li>
            </ul>
            <p style="text-align: justify;">
                THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS &#8220;AS IS&#8221; AND ANY EXPRESS
                OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
                OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
                OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
                CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
                OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
                WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
            </p>
            <div class="grid_5 simple">
                <h3 class="must" style="text-align: justify;">Must</h3>

                <ul style="text-align: justify;">
                    <li>Retain the original copyright notice shown on the left.</li>
                </ul>
                <h3 class="can" style="text-align: justify;">Can</h3>
                <ul style="text-align: justify;">
                    <li>Use freely for commercial purposes in derivative works.</li>
                    <li>Modify.</li>
                    <li>Distribute.</li>
                    <li>Give partial production/distribution rights to third parties not included in the license.</li>
                    <li>Place a warranty on the software.</li>
                </ul>
                <h3 class="cannot" style="text-align: justify;">Cannot</h3>

                <ul style="text-align: justify;">
                    <li>Use contributors&#8217; names, logos or trademarks.</li>
                    <li>
                        Software is released without warranty and the software/license owner cannot be charged for
                        damages.
                    </li>
                </ul>
                <h2 style="text-align: justify;">License of Official and User-contributed Documentation</h2>

                <div class="grid_6 legal">
                    <p style="text-align: justify;">
                        The text contained in the official and user-contributed WritesDown
                        documentation is licensed to the public under the
                        <a href="http://www.gnu.org/copyleft/fdl.html" rel="nofollow">
                            GNU Free DocumentationLicense (GFDL)
                        </a>.
                    </p>
                    <p style="text-align: justify;">
                        Permission is granted to copy, distribute and/or modify this document under the terms of the GNU
                        Free Documentation License (GFDL), Version 1.2 or any later version published by the Free
                        Software Foundation; with no Invariant Sections, with no Front-Cover Texts, and with no
                        Back-Cover Texts.
                    </p>
                    <div class="grid_5 simple">
                        <h3 class="must" style="text-align: justify;">Must</h3>

                        <ul style="text-align: justify;">
                            <li>Grant the same freedoms as in original license.</li>
                            <li>Acknowledge the authors in form of linking back to the original article.</li>
                        </ul>
                        <h3 class="can" style="text-align: justify;">Can</h3>

                        <ul>
                            <li style="text-align: justify;">Copy.</li>
                            <li style="text-align: justify;">Modify.</li>
                            <li style="text-align: justify;">Redistribute.</li>
                        </ul>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>