123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- /*
- Download page
- Copyright (C) 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("Mirroring libreboot"); ?></title>
- </head>
- <body>
- <div>
- <h1><?php echo gettext("Mirroring libreboot"); ?></h1>
- <p>
- <?php echo gettext("Create a directory in your web directory (e.g. libreboot/) and put one of these in your crontab:"); ?>
- </p>
- <?php
- echo rsyncList($lbRsyncServer, gettext("No mirrors available in this range."), 0, count($lbRsyncServer));
- ?>
- <p>
- <?php echo gettext("Are you running a mirror? Contact the libreboot project, and the link will be added to the <a href='../download/'>download</a> page."); ?>
- </p>
-
- <p>
- <a href="../"><?php echo gettext("Back to home page"); ?></a>
- </p>
- </div>
- <?php
- include "../common/ccs.php";
- include "../common/footer.php";
- ?>
- </body>
- </html>
- <?php
- $strHtml = ob_get_clean();
- echo miniHtml($strHtml);
- ?>
|