diff options
Diffstat (limited to 'help.php')
| -rw-r--r-- | help.php | 11 |
1 files changed, 8 insertions, 3 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,9 +9,11 @@ <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css"> - <link rel="stylesheet" href="/css/style.css"> + <style><?php echo file_get_contents('./css/style.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"> @@ -33,12 +36,14 @@ </div> <div class="row"> <h3>What more?</h3> - <p><strong>Hint:</strong> You can even stream videos which are blocked in Germany! (GEMA)</p> + <p><strong>Hint:</strong> You can even stream videos which are blocked in Germany! (GEMA)<br> + Or watch a random YouTube video <a href="/random" title="random videos">here</a>.</p> </div> <div class="row"> <h3>Uhm...</h3> - <p>Still confused? Send me a <a href='mailto:mail@iamfabulous.de' class='mail'>mail</a> or check the <a href='/faq' class='mail'>FAQ</a>.</p> + <p>Still confused? Send me a <a href='mailto:mail@iamfabulous.de' class='mail'>mail</a> or check the <a href='/faq'>FAQ</a>.</p> </div> </div> </div> <?php require_once("static/foot.php"); ?> +<?php ob_end_flush(); ?> |
