index.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. /*
  3. Home page
  4. Copyright (C) 2014, 2015 Leah Rowe <info@minifree.org>
  5. This document is released under Creative Commons Attribution-ShareAlike
  6. 4.0 International license.
  7. See <https://creativecommons.org/licenses/by-sa/4.0/legalcode>
  8. */
  9. header('Content-type: text/html; charset=utf-8');
  10. ob_start();
  11. include_once "../common/variables.php";
  12. include_once "../common/functions.php";
  13. ?>
  14. <!DOCTYPE html>
  15. <html>
  16. <head>
  17. <link rel="stylesheet" type="text/css" href="../common/css/main.css" />
  18. <title><?php echo gettext("GNU/Linux laptops with Libreboot preinstalled"); ?></title>
  19. </head>
  20. <body>
  21. <div>
  22. <h1><?php echo gettext("GNU/Linux laptops with Libreboot preinstalled"); ?></h1>
  23. <p>
  24. <a href="../"><?php echo gettext("Back to home page"); ?></a>
  25. </p>
  26. </div>
  27. <div>
  28. <h1>Ministry of Freedom (UK)</h1>
  29. <p>
  30. <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
  31. systems with Libreboot and <a href="https://trisquel.info/">Trisquel GNU/Linux</a> preinstalled,
  32. fully endorsed by the Free Software Foundation's
  33. <a href="https://www.fsf.org/resources/hw/endorsement/criteria">Respects Your Freedom certification guidelines</a>.
  34. Libreboot's founder and main developer, Leah Rowe, is also Minifree's director, so profits
  35. directly fund Libreboot development.
  36. <strong>This company ships worldwide, to all countries.</strong>
  37. </p>
  38. <p>
  39. <strong><a href="https://minifree.org/">Visit the main site</a></strong>
  40. </p>
  41. <h2>Products available</h2>
  42. <ul class="c">
  43. <li><a href="https://minifree.org/product/libreboot-x200/">Libreboot X200 laptop</a></li>
  44. <li><a href="https://minifree.org/product/libreboot-t400/">Libreboot T400 laptop</a></li>
  45. <li><a href="https://minifree.org/product/libreboot-installation-service/">Libreboot installation service</a></li>
  46. <li><a href="https://minifree.org/product/libreboot-stickers/">Libreboot stickers</a></li>
  47. </ul>
  48. </div>
  49. <?php
  50. include "../common/footer.php";
  51. ?>
  52. </body>
  53. </html>
  54. <?php
  55. $strHtml = ob_get_clean();
  56. echo miniHtml($strHtml);
  57. ?>