summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancis Rowe <info@gluglug.org.uk>2016-04-11 10:43:29 (EDT)
committer Francis Rowe <info@gluglug.org.uk>2016-04-11 10:43:29 (EDT)
commit36b65d4bd59f050628da30fc84cea672e023ec38 (patch)
tree9faa7b28fd802b775677907fcee29188142e23b3
parent4d6b525c7fa158c3ddd0d10b3f99d74f3885ed49 (diff)
downloadlibreboot.org-36b65d4bd59f050628da30fc84cea672e023ec38.zip
libreboot.org-36b65d4bd59f050628da30fc84cea672e023ec38.tar.gz
libreboot.org-36b65d4bd59f050628da30fc84cea672e023ec38.tar.bz2
workshops.
-rw-r--r--site/index.php1
-rw-r--r--site/workshops/index.php74
2 files changed, 75 insertions, 0 deletions
diff --git a/site/index.php b/site/index.php
index acf0b76..1b5c5d1 100644
--- a/site/index.php
+++ b/site/index.php
@@ -77,6 +77,7 @@
<ul>
<li><strong><a href="donate/">How to donate to libreboot</a></strong></li>
<li><strong><a href="suppliers/">How to buy computers with libreboot preinstalled</a></strong></li>
+ <li><strong><a href="workshops/">Workshops that offer libreboot installation</a></strong></li>
</ul>
<ul>
<li><a href="<?php echo $ircChannelAddress; ?>">Join <?php echo $ircChannelName; ?></a></li>
diff --git a/site/workshops/index.php b/site/workshops/index.php
new file mode 100644
index 0000000..c9e0aa7
--- /dev/null
+++ b/site/workshops/index.php
@@ -0,0 +1,74 @@
+<?php
+/*
+ Home page
+ Copyright (C) 2016 Francis Rowe <info@gluglug.org.uk>
+
+ 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("Workshops that offer libreboot installation"); ?></title>
+</head>
+
+<body>
+
+ <div>
+ <h1><?php echo gettext("Workshops that offer libreboot installation"); ?></h1>
+ <p>
+ If you have a system that libreboot is compatible with, you can
+ go to one of these places to get it flashed. Most of them are
+ hackerspaces; contact them for more details.
+ </p>
+ <p>
+ <a href="../"><?php echo gettext("Back to home page"); ?></a>
+ </p>
+ </div>
+
+ <div>
+ <h1>Labitat (Denmark)</h1>
+ <p>
+ <a href="https://labitat.dk/">https://labitat.dk/</a> - contact
+ <strong>Jobbe</strong> on the freenode IRC network.
+ </p>
+ <h1>Clujmakers (Romania)</h1>
+ <p>
+ <a href="http://clujmakers.com/contact-us/">http://clujmakers.com/contact-us/</a>
+ </p>
+ <h1>Hatch Hackerspace (Romania)</h1>
+ <p>
+ <a href="http://www.hatchatelier.ro/index.html#main_contact">http://www.hatchatelier.ro/index.html#main_contact</a>
+ </p>
+ <h1>Do you have your own workshop in your country/region?</h1>
+ <p>
+ Contact the libreboot project on the mailing list (details are on the homepage) and we'll add a link here.
+ </p>
+ </div>
+
+<?php
+ include "../common/footer.php";
+?>
+
+</body>
+</html>
+<?php
+ $strHtml = ob_get_clean();
+ echo miniHtml($strHtml);
+?>