blob: b9ed1644237ab25dbc70b77686111061581f1e59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
<?php
/*
Home page
Copyright (C) 2016 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("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>Libreplanet conference (Boston, MA, USA)</h1>
<p>
<a href="https://libreplanet.org/<?php echo date("Y"); ?>/">Libreplanet conference</a> - Free software conference
held by the <a href="https://www.fsf.org/">Free Software Foundation</a> in March each year, in
Boston, MA. They usually have workshops for libreboot.
</p>
<h1>Coliberator conference (Bucharest, Romania)</h1>
<p>
<a href="http://coliberator.ro/">Coliberator conference</a> - Free Software & Free
Culture conference held by <a href="http://ceata.org/">Fundația Ceata</a> in
beginning of June each year, in Bucharest, Romania. They will start
having workshops for libreboot with the 2016 edition.
</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);
?>
|