123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- /*
- Home page
- Copyright (C) 2014, 2015 Leah Rowe <info@minifree.org>
- This document is released under Creative Commons Attribution-ShareAlike
- 4.0 International license.
- See <https://creativecommons.org/licenses/by-sa/4.0/legalcode>
- */
- 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("GNU/Linux laptops with Libreboot preinstalled"); ?></title>
- </head>
- <body>
- <div>
- <h1><?php echo gettext("GNU/Linux laptops with Libreboot preinstalled"); ?></h1>
- <p>
- <a href="../"><?php echo gettext("Back to home page"); ?></a>
- </p>
- </div>
- <div>
- <h1>Ministry of Freedom (UK)</h1>
- <p>
- <a href="https://minifree.org/"><img src="https://minifree.org/minifree.png" alt="Ministry of Freedom" title="Ministry of Freedom" style="float:left; width:auto; height:auto;" /></a>Since 2013, the Ministry of Freedom (formerly Gluglug) sells
- systems with Libreboot and <a href="https://trisquel.info/">Trisquel GNU/Linux</a> preinstalled,
- fully endorsed by the Free Software Foundation's
- <a href="https://www.fsf.org/resources/hw/endorsement/criteria">Respects Your Freedom certification guidelines</a>.
- Libreboot's founder and main developer, Leah Rowe, is also Minifree's director, so profits
- directly fund Libreboot development.
- <strong>This company ships worldwide, to all countries.</strong>
- </p>
- <p>
- <strong><a href="https://minifree.org/">Visit the main site</a></strong>
- </p>
- <h2>Products available</h2>
- <ul class="c">
- <li><a href="https://minifree.org/product/libreboot-x200/">Libreboot X200 laptop</a></li>
- <li><a href="https://minifree.org/product/libreboot-t400/">Libreboot T400 laptop</a></li>
- <li><a href="https://minifree.org/product/libreboot-installation-service/">Libreboot installation service</a></li>
- <li><a href="https://minifree.org/product/libreboot-stickers/">Libreboot stickers</a></li>
- </ul>
- </div>
- <?php
- include "../common/footer.php";
- ?>
- </body>
- </html>
- <?php
- $strHtml = ob_get_clean();
- echo miniHtml($strHtml);
- ?>
|