diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-05-31 17:02:03 (EDT) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-05-31 17:02:03 (EDT) |
commit | 52b5f37d936f2e4d953a2977a31ce6167508f44d (patch) | |
tree | 0f99bf49cc54235ad6b97d471062871b25a0dd6c /site/index.php | |
parent | b061bd5b442d84a1c6b0c090ba454770df2de81d (diff) | |
download | libreboot.org-52b5f37d936f2e4d953a2977a31ce6167508f44d.zip libreboot.org-52b5f37d936f2e4d953a2977a31ce6167508f44d.tar.gz libreboot.org-52b5f37d936f2e4d953a2977a31ce6167508f44d.tar.bz2 |
move common resources to common/
Diffstat (limited to 'site/index.php')
-rw-r--r-- | site/index.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/site/index.php b/site/index.php index 1817543..551db30 100644 --- a/site/index.php +++ b/site/index.php @@ -18,14 +18,14 @@ */ header('Content-type: text/html; charset=utf-8'); ob_start(); - include_once "variables.php"; - include_once "functions.php"; + include_once "common/variables.php"; + include_once "common/functions.php"; ?> <!DOCTYPE html> <html> <head> <style type="text/css"> - <?php echo miniCss(file_get_contents("css/main.css")); ?> + <?php echo miniCss(file_get_contents("common/css/main.css")); ?> </style> <title><?php echo gettext("Libreboot project"); ?></title> </head> @@ -74,7 +74,7 @@ </div> <?php - include "footer.php"; + include "common/footer.php"; ?> </body> |