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/contrib | |
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/contrib')
-rw-r--r-- | site/contrib/index.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/site/contrib/index.php b/site/contrib/index.php index 1b8905c..6698360 100644 --- a/site/contrib/index.php +++ b/site/contrib/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 maintainers"); ?></title> </head> @@ -75,7 +75,7 @@ </div> <?php - include "../footer.php"; + include "../common/footer.php"; ?> </body> |