summaryrefslogtreecommitdiffstats
path: root/site/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'site/index.php')
-rw-r--r--site/index.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/site/index.php b/site/index.php
index 246a327..5b82484 100644
--- a/site/index.php
+++ b/site/index.php
@@ -18,6 +18,7 @@
*/
?>
<?php
+ ob_start();
include_once "variables.php";
include_once "functions.php";
?>
@@ -28,7 +29,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css">
-<?php include "css/main.css"; ?>
+<?php echo miniCss(file_get_contents("css/main.css")); ?>
</style>
<title><?php echo gettext("Libreboot project"); ?></title>
@@ -106,4 +107,7 @@
</body>
</html>
-
+<?php
+ $strHtml = ob_get_clean();
+ echo miniHtml($strHtml);
+?> \ No newline at end of file