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 | |
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')
-rw-r--r-- | site/common/css/main.css (renamed from site/css/main.css) | 0 | ||||
-rw-r--r-- | site/common/css/main.css.copying (renamed from site/css/main.css.copying) | 0 | ||||
-rw-r--r-- | site/common/footer.php (renamed from site/footer.php) | 0 | ||||
-rw-r--r-- | site/common/functions.php (renamed from site/functions.php) | 0 | ||||
-rw-r--r-- | site/common/variables.php (renamed from site/variables.php) | 0 | ||||
-rw-r--r-- | site/contrib/index.php | 8 | ||||
-rw-r--r-- | site/download/index.php | 8 | ||||
-rw-r--r-- | site/index.php | 8 |
8 files changed, 12 insertions, 12 deletions
diff --git a/site/css/main.css b/site/common/css/main.css index a5f2023..a5f2023 100644 --- a/site/css/main.css +++ b/site/common/css/main.css diff --git a/site/css/main.css.copying b/site/common/css/main.css.copying index d53cdb0..d53cdb0 100644 --- a/site/css/main.css.copying +++ b/site/common/css/main.css.copying diff --git a/site/footer.php b/site/common/footer.php index 3265805..3265805 100644 --- a/site/footer.php +++ b/site/common/footer.php diff --git a/site/functions.php b/site/common/functions.php index e0cda47..e0cda47 100644 --- a/site/functions.php +++ b/site/common/functions.php diff --git a/site/variables.php b/site/common/variables.php index de12346..de12346 100644 --- a/site/variables.php +++ b/site/common/variables.php 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> diff --git a/site/download/index.php b/site/download/index.php index 24cad9a..eb2d441 100644 --- a/site/download/index.php +++ b/site/download/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("Download libreboot"); ?></title> </head> @@ -274,7 +274,7 @@ </div> <?php - include "../footer.php"; + include "../common/footer.php"; ?> </body> 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> |