diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-02-17 01:24:25 (EST) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-02-17 01:24:25 (EST) |
commit | 2faa892e7a799dc7d87c5697e185185baa83a282 (patch) | |
tree | fab511711f4c700efde9173e10d372f2e9fac5ba /site/index.php | |
parent | 5e544087a28a15cf1a6fc8dc2e46d412771dfd31 (diff) | |
download | libreboot.org-2faa892e7a799dc7d87c5697e185185baa83a282.zip libreboot.org-2faa892e7a799dc7d87c5697e185185baa83a282.tar.gz libreboot.org-2faa892e7a799dc7d87c5697e185185baa83a282.tar.bz2 |
move files to site/
Diffstat (limited to 'site/index.php')
-rw-r--r-- | site/index.php | 97 |
1 files changed, 97 insertions, 0 deletions
diff --git a/site/index.php b/site/index.php new file mode 100644 index 0000000..6c82088 --- /dev/null +++ b/site/index.php @@ -0,0 +1,97 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + + <link rel="stylesheet" type="text/css" href="css/main.css" /> + + <title>Libreboot project</title> + +</head> + +<?php + include_once "variables.php"; +?> + +<body> + + <div class="contain"> + + <div id="libreboot" class="section intro"> + <p> + <img class="homepage_logo" src="logo/logo.svg" alt="" /> + </p> + <h1>Libreboot project</h1> + <p> + Libreboot is a <a href="http://coreboot.org/">coreboot</a> distribution (distro) with proprietary software removed, + intended to be a <a href="https://www.fsf.org/about/what-is-free-software">free</a> + (libre) 'BIOS' replacement for your computer. The project is aimed at users, attempting to make + coreboot as easy to use as possible. <a href="docs/index.html#why">Learn more about libreboot</a>. + </p> + <p> + 'Free' in this sense refers to freedom (liberty); read the full <a href="https://www.gnu.org/philosophy/free-sw.html">Free Software definition</a>. + </p> + </div> + + <div class="fullheight"> + <div class="section stable" style="height:15em;"> + <h1>Stable releases</h1> + <p> + These releases are tested, and recommended for general use. + Utilities (statically compiled) and ROM images are provided, built from the source code. + </p> + <ul class="ulnav"> + <li><a href="docs/release.html">Downloads</a></li> + <li><a href="docs/install/index.html">How to install libreboot</a></li> + <li><a href="docs/gnulinux/index.html">How to install GNU/Linux on a libreboot system</a></li> + <li><a href="docs/hcl/index.html#supported_list">List of supported systems</a></li> + <li><a href="docs/index.html">General documentation</a></li> + </ul> + <p> + The latest release is from February 8th, 2015. + </p> + </div> + <div class="section unstable"> + <h1>Development (unstable)</h1> + <p>Use this version if you want to <b>brick</b> your computer.</p> + <div class="subsection"> + <p> + <b>git clone <a href="<?php echo $lbFirmwareGitwebAddress; ?>"><?php echo $lbFirmwareGitRepoAddress; ?></a></b> + </p> + </div> + <ul class="ulnav"> + <li><a href="gitdocs/git/index.html#build_meta">How to use the git repository</a></li> + <li><a href="<?php echo $lbBugTrackerAddress; ?>">Bug tracker</a></li> + <li><a href="gitdocs/index.html">Documentation</a></li> + <li><b><a href="github/">Please do not use GitHub!</a></b></li> + </ul> + <p> + Snapshot (<a href="<?php echo $lbFirmwareGitwebAddress; ?>;a=commit;h=<?php include "git/commitid"; ?>">view commit</a>): + <a href="git/rom">ROM images</a> + <a href="git/libreboot_src.tar.xz">Source code</a> + </p> + </div> + </div> + + <div class="section contact"> + <h1>Contact information</h1> + <ul class="ulnav"> + <li><a href="contrib/">List of maintainers</a></li> + <li><a href="<?php echo $userMailingListAddress; ?>">User support mailing list</a></li> + <li><a href="<?php echo $devMailingListAddress; ?>">Development mailing list</a></li> + <li><a href="<?php echo $ircChannelAddress; ?>"><?php echo $ircChannelName; ?></a></li> + </ul> + </div> + + <div class="section footer"> +<?php + include "footer.php"; +?> + </div> + + </div> + +</body> +</html> + |