summaryrefslogtreecommitdiffstats
path: root/site/index.php
blob: be8c1d302cb97d851987ed414cdb21fb3231ad68 (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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<?php
/*
    Home page
    Copyright (C) 2014, 2015  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 "variables.php";
	include_once "functions.php";
?>
<!DOCTYPE html>
<html>
<head>
	<meta name="viewport" content="width=device-width, initial-scale=1">

<style type="text/css">
<?php echo miniCss(file_get_contents("css/main.css")); ?>
</style>

	<title><?php echo gettext("Libreboot project"); ?></title>

</head>

<body>

	<div class="c">

		<div id="libreboot" class="s">
				<p>
					<img src="logo/logo-small.png" alt="" title="<?php include "logo/license.txt"; ?>" />
				</p>
			<h1><?php echo gettext("Libreboot project"); ?></h1>
				<p>
					<?php
						echo gettext("Libreboot is a <a href=\"https://www.fsf.org/about/what-is-free-software\">free</a> (libre) BIOS/UEFI replacement for your computer. Based on <a href=\"http://coreboot.org/\">coreboot</a>, the aim is to distribute low-level boot firmware that is 100% free software, and to make coreboot easy to use.");
					?>
				</p>
				<ul class="l">
					<li><a href="docs/index.html#why"><?php echo gettext("Why should I use libreboot?"); ?></a></li>
					<li><a href="download/#git"><?php echo gettext("How to contribute"); ?></a></li>
					<li><a href="docs/tasks.html"><?php echo gettext("List of tasks"); ?></a></li>
					<li><a href="download/#mirror"><?php echo gettext("Mirroring libreboot"); ?></a></li>
				</ul>
		</div>
		
		<div class="s">
			<h1><?php echo gettext("Download libreboot"); ?></h1>
				<ul class="l">
					<li><a href="git/rom"><?php echo gettext("ROM images"); ?></a></li>
					<li><a href="git/libreboot_util.tar.xz"><?php echo gettext("Utilities"); ?></a></li>
					<li><a href="git/libreboot_docs.tar.xz"><?php echo gettext("Documentation (archived)"); ?></a></li>
					<li><a href="git/libreboot_src.tar.xz"><?php echo gettext("Source code"); ?></a></li>
					<li><a href="git/crossgcc/">crossgcc</a></li>
					<li><?php echo gettext("...based on "); ?><a href="<?php echo $lbFirmwareGitwebAddress; ?>;a=commit;h=<?php include "git/commitid"; ?>"><?php echo gettext("this"); ?></a><?php echo gettext(" commit"); ?></li>
				</ul>
				<ul class="l">
					<li><a href="git/release.html"><?php echo gettext("List of changes"); ?></a></li>
					<li><a href="git/sha512sum.txt"><?php echo gettext("SHA512 manifest"); ?></a></li>
					<li><a href="git/sha512sum.txt.sig"><?php echo gettext("SHA512 manifest (GPG signature)"); ?></a></li>
					<li><a href="download/#gpg"><?php echo gettext("How to use GPG"); ?></a></li>
				</ul>
				
				<ul class="l">
					<li><?php echo gettext("Other resources:"); ?></li>
					<li><a href="download/#archives"><?php echo gettext("Archived releases"); ?></a></li>
					<li><a href="download/#git"><?php echo gettext("Git repositories"); ?></a></li>
					<li><a href="<?php echo $lbFirmwareGitwebAddress; ?>"><?php echo gettext("Browse the main git repository"); ?></a></li>
				</ul>
		</div>
		<div class="s">
			<h1><?php echo gettext("Useful information"); ?></h1>
				<ul class="l">					
					<li><a href="docs/index.html"><?php echo gettext("Documentation"); ?></a></li>
					<li><a href="docs/hcl/index.html#supported_list"><?php echo gettext("List of supported systems"); ?></a></li>
					<li><a href="docs/install/index.html"><?php echo gettext("How to install libreboot"); ?></a></li>
					<li><a href="docs/gnulinux/index.html"><?php echo gettext("How to install GNU/Linux"); ?></a></li>
				</ul>
			<h2><?php echo gettext("Contact details"); ?></h2>
				<ul class="l">
					<li><a href="contrib/"><?php echo gettext("List of maintainers"); ?></a></li>
					<li><a href="<?php echo $userMailingListAddress; ?>"><?php echo gettext("User support mailing list"); ?></a></li>
					<li><a href="<?php echo $devMailingListAddress; ?>"><?php echo gettext("Development mailing list"); ?></a></li>
					<li><a href="<?php echo $ircChannelAddress; ?>"><?php echo $ircChannelName; ?></a></li>
				</ul>
		</div>

<?php
	include "footer.php";
?>

	</div>

</body>
</html>
<?php
	$strHtml = ob_get_clean();
	echo miniHtml($strHtml);
?>