diff options
author | Leah Woods <info@minifree.org> | 2016-05-05 18:44:51 (EDT) |
---|---|---|
committer | Leah Woods <info@minifree.org> | 2016-05-05 18:48:37 (EDT) |
commit | fcf68fe8ee4660c6343c57b8ee49b3362505dd20 (patch) | |
tree | dd5f3d891d4a5f6a82bf4ea7ad9b47004fe9b05a | |
parent | 435f6547e63ac0be617bcfc427848ef4876a9cd2 (diff) | |
download | libreboot.org-fcf68fe8ee4660c6343c57b8ee49b3362505dd20.zip libreboot.org-fcf68fe8ee4660c6343c57b8ee49b3362505dd20.tar.gz libreboot.org-fcf68fe8ee4660c6343c57b8ee49b3362505dd20.tar.bz2 |
Re-add the contrib page
Reason I deleted it before was because I wanted to change my name on it, but
wasn't out publicly yet. Now that I am, I can re-add the page.
-rw-r--r-- | site/contrib/index.php | 82 | ||||
-rw-r--r-- | site/index.php | 1 |
2 files changed, 83 insertions, 0 deletions
diff --git a/site/contrib/index.php b/site/contrib/index.php new file mode 100644 index 0000000..8cede29 --- /dev/null +++ b/site/contrib/index.php @@ -0,0 +1,82 @@ +<?php +/* + Contributor page, lists maintainers of the project + Copyright (C) 2015 Leah Woods <info@minifree.org>" + + 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. + + 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. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. +*/ + header('Content-type: text/html; charset=utf-8'); + ob_start(); + include_once "../common/variables.php"; + include_once "../common/functions.php"; +?> +<!DOCTYPE html> +<html> +<head> + <link rel="stylesheet" type="text/css" href="../common/css/main.css" /> + <title><?php echo gettext("Libreboot project maintainers"); ?></title> +</head> + +<body> + + <div> + + <h1><?php echo gettext("Libreboot project maintainers"); ?></h1> + + <p> + <?php echo gettext("List of project maintainers, and how to contact them."); ?> <a href="../"><?php echo gettext("Back to home page"); ?></a> + </p> + + </div> + + <div> + + <h2>Leah Woods</h2> + <p> + <?php echo gettext("Main developer, manages the libreboot website and git repository."); ?> + <?php echo gettext("Leah can be contacted on IRC (freenode) in #libreboot by the alias <strong>vimuser</strong>, or you can contact her by the email address <a href=\"mailto:info@gluglug.org.uk\">info@gluglug.org.uk</a> (<a href=\"http://gluglug.org.uk/contact\">GPG</a>)."); ?> + </p> + <h2>Timothy Pearson</h2> + <p> + Ported the ASUS KGPE-D16 board to coreboot for the company <a href="https://raptorengineeringinc.com/content/base/main.htm">Raptor Engineering</a> of which Timothy is the CEO, and + collaborated with Leah on merging it in libreboot. Timothy maintains this code in coreboot, helping Leah with the libreboot integration for it. + This person's contact details are on the raptor site, or you can ping <strong>tpearson</strong> on the freenode IRC network. + </p> + <h2>Paul Kocialkowski</h2> + <p> + Ported the ARM (Rockchip RK3288 SoC) based <em>Chromebook</em> laptops to libreboot. Also one of the main <a href="http://www.replicant.us/">Replicant</a> developers. + Contact Paul on the libreboot IRC channel by the alias <strong>paulk</strong> or <strong>paulk-<hostname></strong> (hostname is variable). + </p> + <h2>Damien Zammit</h2> + <p> + Maintains the Gigabyte GA-G41M-ES2L coreboot port, which is integrated in libreboot. Also works on other hardware for the benefit of the libreboot project. + Contact <strong>damo22</strong> on the freenode IRC network. This persons website is <a href="http://www.zammit.org/">zammit.org</a>. + </p> + <h2>Lisa Maginnis</h2> + <p> + <?php echo gettext("<a href=\"https://fsf.org/\">FSF</a> sysadmin, responsible for maintaining the libreboot and libreboot-dev mailing lists, and much of the infrastructure that libreboot uses (for instance, libreboot uses Savannah for Git hosting)."); ?> + <?php echo gettext("Contact <strong>nully</strong> in the libreboot IRC channel."); ?> + </p> + </div> + +<?php + include "../common/footer.php"; +?> + +</body> +</html> +<?php + $strHtml = ob_get_clean(); + echo miniHtml($strHtml); +?> diff --git a/site/index.php b/site/index.php index ef08a01..87d4d39 100644 --- a/site/index.php +++ b/site/index.php @@ -83,6 +83,7 @@ <li><a href="<?php echo $ircChannelAddress; ?>">Join <?php echo $ircChannelName; ?></a></li> <li><a href="<?php echo $userMailingListAddress; ?>"><?php echo gettext("Subscribe to mailing list"); ?></a></li> <li><a href="<?php echo $devMailingListAddress; ?>"><?php echo gettext("Subscribe to dev mailing list"); ?></a></li> + <li><a href="contrib/"><?php echo gettext("Contact the developers"); ?></a></li> </ul> <ul> <li><strong><a href="git/">How can I help the libreboot project?</a></strong></li> |