1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00
Files
archived-web-php/download-logos.php
Webysther Nunes f4639a03ba Fix text
2016-06-02 20:02:39 -03:00

90 lines
2.5 KiB
PHP

<?php
// $Id$
$_SERVER['BASE_PAGE'] = 'download-logos.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
$SIDEBAR_DATA = '
<h3>More PHP artwork</h3>
<p>
<a href="http://www.elroubio.net/">Vincent Pontier</a> also made some
really neat PHP artwork, for the French PHP sites, and for the benefit
of the whole community. You can download some of his works and use
under a GPL license.
</p>
';
site_header("Download Logos", array("current" => "downloads"));
// Print recommended star cell
function print_star()
{
echo "<td class=\"star\"><span class=\"star\" title=\"recommended\">*</span></td>\n";
}
// Provide a random bgcolor setting for a cell
function random_bgcolor($min, $max)
{
echo "style=\"background-color: #" .
sprintf('%02x%02x%02x', rand($min, $max)*51, rand($min, $max)*51, rand($min, $max)*51) .
";\"";
}
?>
<h1>Download</h1>
<p>
Click on link below image and save the image.
</p>
<ul>
<li>
Copy the image to your server.
</li>
<li>
Prefer SVG and convert to size/format you need.
</li>
<li>
The font used is
<a href="http://www.myfonts.com/fonts/bitstream/handel-gothic/">Handel
Gothic</a>.
</li>
</ul>
<h2>Licensing</h2>
<p>
The author Colin Viebrock released the image as
<a href="https://creativecommons.org/licenses/by-sa/4.0/">Creative Commons
Attribution-Share Alike 4.0 International</a>, feel free to reuse, do not
forget the terms of use:
<ul>
<li>
<strong>Attribution</strong> — 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>
<strong>ShareAlike</strong> — If you remix, transform, or build upon the material,
you must distribute your contributions under the same license as the original.
</li>
</ul>
</p>
<div class="logo-list row">
<div class="col center">
<img src="/images/logos/new-php-logo.png" width="200" alt="php logo">
<br>
<a href="http://php.net/images/logos/new-php-logo.svg">SVG</a> |
<a href="http://php.net/images/logos/new-php-logo.png">PNG</a>
</div>
<div class="col center">
<img src="/images/logos/php-logo-bigger.png" width="150" alt="php logo without background">
<br>
Without Background
<br>
<a href="http://php.net/images/logos/php-logo.svg">SVG</a> |
<a href="http://php.net/images/logos/php-logo-bigger.png">PNG</a>
</div>
</div>
<?php site_footer();