diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-05-27 06:32:52 (EDT) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-05-27 06:32:52 (EDT) |
commit | 73d70183d8dc273d38343310c75136f010412bfc (patch) | |
tree | 6614d31337522bdbf62cd8d4b129a12062dc5fb3 /site/index.php | |
parent | 9c575aba4d6f2f0973693003cc14878d6eea308d (diff) | |
download | libreboot.org-73d70183d8dc273d38343310c75136f010412bfc.zip libreboot.org-73d70183d8dc273d38343310c75136f010412bfc.tar.gz libreboot.org-73d70183d8dc273d38343310c75136f010412bfc.tar.bz2 |
css: really optimize it
Diffstat (limited to 'site/index.php')
-rw-r--r-- | site/index.php | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/site/index.php b/site/index.php index 717d493..f3aaaad 100644 --- a/site/index.php +++ b/site/index.php @@ -34,9 +34,9 @@ <body> - <div class="contain"> + <div class="c"> - <div id="libreboot" class="section intro"> + <div id="libreboot" class="s"> <p> <img src="logo/logo-small.png" alt="" title="<?php include "logo/license.txt"; ?>" /> </p> @@ -46,7 +46,7 @@ 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="ulnav"> + <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> @@ -54,9 +54,9 @@ </ul> </div> - <div class="section"> + <div class="s"> <h1><?php echo gettext("Download libreboot"); ?></h1> - <ul class="ulnav"> + <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> @@ -64,30 +64,30 @@ <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="ulnav"> + <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="ulnav"> + <ul class="l"> <li><?php echo gettext("Other resources:"); ?></li> <li><a href="download/#http"><?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="section"> + <div class="s"> <h1><?php echo gettext("Useful information"); ?></h1> - <ul class="ulnav"> + <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="ulnav"> + <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> @@ -95,11 +95,9 @@ </ul> </div> - <div class="section footer"> <?php include "footer.php"; ?> - </div> </div> |