Skip to content

Commit

Permalink
Fine Print page and logos zipfile.
Browse files Browse the repository at this point in the history
  • Loading branch information
lonnieezell committed Oct 9, 2020
1 parent fff6a70 commit 716d517
Show file tree
Hide file tree
Showing 4 changed files with 112 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/Config/Routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
$routes->get('contribute', 'Contribute::index');
$routes->get('download', 'Download::index');
$routes->get('policies', 'Policies::index');
$routes->get('the-fine-print', 'FinePrint::index');

/**
* --------------------------------------------------------------------
Expand Down
9 changes: 9 additions & 0 deletions app/Controllers/FinePrint.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?php namespace App\Controllers;

class FinePrint extends BaseController
{
public function index()
{
echo $this->render('fine_print');
}
}
102 changes: 102 additions & 0 deletions app/Views/fine_print.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
<?= $this->extend('layouts/app') ?>

<?= $this->section('content') ?>

<!-- CONTENT -->
<div class="clr"></div>
<section id="content-outer">
<div id="content-inner">
<div id="policies-icon-holder">
<img src="/assets/icons/44521256.png" id="policies-icon"/>
</div><!--icon ends here-->

<div class="clr"></div>

<div class="inner-page-text-box">
<div class="inner-page-text-box-title">Trademarks</div>
<p>
CodeIgniter® is a registered trademark of the CodeIgniter Foundation, having being transferred from the
British Columbia Institute of Technology in 2019.
</p>
<p>
The CodeIgniter logo is an unregistered mark owned by the CodeIgniter Foundation, having been transferred from BCIT.
We supply <a href="/data/ci-logo.zip" target="_blank" class="link-primary">several versions of the CodeIgniter logo</a> for use in your projects, subject to the guidelines below.
</p>
<p>
<img src="/assets/icons/creative-commons.png" id="creative-commons-image"/>
</p>

</div><!--inner-page-text-box ends here-->

<div class="clr"></div>


<div class="inner-page-text-box">
<div class="inner-page-text-box-title">Privacy Policy</div>
<p>
You are welcome to use the CodeIgniter logo in your project, provided that you ...
</p>
<ul>
<li>
Do not make unauthorized or confusing use of the CodeIgniter trademark or a variation of it, including creating
the impression that the Foundation sponsors or endorses your website, products, or services.
</li>
<li>Use the ® trademark registration symbol when you use the CodeIgniter registered trademark</li>
<li>Use capitalization and bold or italic fonts to distinguish the CodeIgniter trademark from the text around it. </li>
<li>
Place a conspicuous legend at least once on webpages using the CodeIgniter trademark and on the title page of
any documentation or sales literature bearing the CodeIgniter trademark. An example of an acceptable legend is:
"The CodeIgniter mark is owned and may be registered by the CodeIgniter Foundation."
</li>
<li>
Place a disclaimer conspicuously at least once on webpages using the CodeIgniter trademark and on the title page
of any documentation or sales literature bearing the CodeIgniter trademark. An example of an acceptable disclaimer
is: "\_________ is an independent \_________ and has not been authorized, sponsored, or otherwise approved by
the CodeIgniter Foundation." [In each case, fill the blank space with the name and type of your product.]
</li>
<li>
Do not change the spelling, make other changes to the CodeIgniter trademark, or combine the CodeIgniter trademark
with any other trademark, term, or designation.
</li>
<li>
Use the CodeIgniter trademark only in connection with goods and services directly related to CodeIgniter or
services associated with that trademark.
</li>
<li>Do not use the CodeIgniter trademark or any variation of it in your domain name or URL.</li>
<li>Do not use the CodeIgniter trademark for your own products and services that are related to web publishing, programming frameworks, or related software. </li>
<li>Do not claim ownership rights in the CodeIgniter trademark.</li>
</ul>

</div><!--inner-page-text-box ends here-->

<div class="clr"></div>

<div class="inner-page-text-box">
<div class="inner-page-text-box-title">Website data</div>
<p>
Mention of third party companies and products on this web site is for informational purposes
only and constitutes neither an endorsement nor a recommendation.
</p>
</div><!--inner-page-text-box ends here-->

<div class="clr"></div>

<div class="inner-page-text-box">
<div class="inner-page-text-box-title">Links to Other Web Sites</div>
<p>
The CodeIgniter Foundation makes no representations whatsoever about any other websites which you may access from here.
When you access an external website, please understand that it is independent from this website,
and that we has no control over the content on that website. A link to an external site does not mean that the
CodeIgniter Foundation endorses or accepts any responsibility for the content or use of such website.
</p>
</div><!--inner-page-text-box ends here-->

<div class="clr"></div>

</div><!--content-inner ends here-->
</div><!--section ende-->


<div class="clr"></div>

<?= $this->endSection() ?>
Binary file added public/data/ci-logo.zip
Binary file not shown.

0 comments on commit 716d517

Please sign in to comment.