diff options
Diffstat (limited to 'site/workshops')
-rw-r--r-- | site/workshops/index.php | 74 |
1 files changed, 74 insertions, 0 deletions
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); +?> |