diff options
| author | root | 2014-09-14 19:00:10 +0200 |
|---|---|---|
| committer | root | 2014-09-14 19:00:10 +0200 |
| commit | 1eba482c5172a92432c13e04480cb1604bef6df0 (patch) | |
| tree | d18149777a4ddd7f0b50d6be57acee42bfc0b080 /index.php | |
| parent | 1ae8d5fa2c627cf179c7b6aa1202304f55a00654 (diff) | |
| download | video-dl-1eba482c5172a92432c13e04480cb1604bef6df0.tar.gz | |
modified
Diffstat (limited to 'index.php')
| -rw-r--r-- | index.php | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,3 +1,4 @@ +<?php ob_start(function($b){return preg_replace(['/\>[^\S ]+/s','/[^\S ]+\</s','/(\s)+/s'],['>','<','\\1'],$b);}); ?> <!doctype html> <html> @@ -8,10 +9,15 @@ <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"> - <link rel="stylesheet" href="/css/form.css"> + <?php /* + <link rel="stylesheet" href="/css/form.min.css"> <link rel="stylesheet" href="/css/style.css"> + */ ?> + <style><?php echo file_get_contents('./css/style.min.css') . ' '. file_get_contents('./css/form.min.css');?></style> <?php require_once("static/noscript.html"); ?> </head> +<?php ob_end_flush(); ?> +<?php ob_start(function($b){return preg_replace(['/\>[^\S ]+/s','/[^\S ]+\</s','/(\s)+/s'],['>','<','\\1'],$b);}); ?> <body> <?php require_once("static/header.php"); ?> <div class="container"> @@ -31,3 +37,4 @@ </div> </div> <?php require_once("static/foot.php"); ?> +<?php ob_end_flush(); ?> |
