diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-12-12 21:35:26 (EST) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-12-12 21:35:26 (EST) |
commit | 4420e95970e33a1f015e57943a2e76ee8fdd17ff (patch) | |
tree | 0802495f058e918491dad8253abf80aed98e0866 /site/rsync/index.php | |
parent | 141f849d47bf31ffdd3eabfc1bf0568933168a6c (diff) | |
download | libreboot.org-4420e95970e33a1f015e57943a2e76ee8fdd17ff.zip libreboot.org-4420e95970e33a1f015e57943a2e76ee8fdd17ff.tar.gz libreboot.org-4420e95970e33a1f015e57943a2e76ee8fdd17ff.tar.bz2 |
link to css on pages, don't embed inline (for browser caching)
Diffstat (limited to 'site/rsync/index.php')
-rw-r--r-- | site/rsync/index.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/site/rsync/index.php b/site/rsync/index.php index 3e7629c..34b283d 100644 --- a/site/rsync/index.php +++ b/site/rsync/index.php @@ -24,9 +24,7 @@ <!DOCTYPE html> <html> <head> - <style type="text/css"> - <?php echo miniCss(file_get_contents("../common/css/main.css")); ?> - </style> + <link rel="stylesheet" type="text/css" href="../common/css/main.css" /> <title><?php echo gettext("Mirroring libreboot"); ?></title> </head> @@ -63,4 +61,4 @@ <?php $strHtml = ob_get_clean(); echo miniHtml($strHtml); -?>
\ No newline at end of file +?> |