summaryrefslogtreecommitdiff
path: root/header.php
diff options
context:
space:
mode:
authorroot2014-11-10 13:58:15 +0100
committerroot2014-11-10 13:58:15 +0100
commit6b9e4d0310dfcfd6b780046dad76c7c4c80868b1 (patch)
tree7a27fc2b989aae96f9eb6b67c429c8512558a4dd /header.php
parent39cda24064c04488b2e1b07e37683c79eae67d28 (diff)
downloadhttpheader-6b9e4d0310dfcfd6b780046dad76c7c4c80868b1.tar.gz
merged everything in one file
Diffstat (limited to 'header.php')
-rw-r--r--header.php92
1 files changed, 0 insertions, 92 deletions
diff --git a/header.php b/header.php
deleted file mode 100644
index 1a41233..0000000
--- a/header.php
+++ /dev/null
@@ -1,92 +0,0 @@
-<!doctype html>
-<html>
-<head>
- <meta charset="utf-8">
- <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
- <style>
- html {
- position: relative;
- min-height: 100%;
-}
-
-body {
- margin-bottom: 60px;
-}
-
-a {
- color: #3083D6;
-}
-
-/* navbar */
-
-.navbar-default {
- background-color: #3083D6 ;
- border-color: #3083D6 ;
- background: #3083D6 ;
-}
-
-.navbar-default .navbar-brand {
- color: white;
-}
-
-.navbar-default .navbar-brand:hover,
-.navbar-default .navbar-brand:focus {
-}
-
-.navbar-default .navbar-nav > li > a {
- color: white;
-}
-
-
-/* footer */
-
-.footer {
- background-color: #3083D6 ;
- border-color: #3083D6 ;
- background: #3083D6 ;
- color: white ;
- position: absolute;
- bottom: 0;
- width: 100%;
-}
-
-.footer-a {
- color: white;
-}
- </style>
- <title>Header: <?php echo htmlentities($_POST['url']); ?></title>
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel='shortcut icon' href='/favicon.ico' type='image/x-icon'>
-</head>
-<body>
- <nav class="navbar navbar-default navbar-custom" role="navigation">
- <div class="container">
- <div class="navbar-header">
- <a class="navbar-brand" href=""><span class="glyphicon glyphicon-home"></span> Home</a>
- </div>
- </div>
- </nav>
-<div class="container">
- <div class="text-center">
- <div class="row">
- <h3><u><?php echo htmlentities($_POST['url']); ?></u></h3>
- <br>
- <pre>
-<?php
- require 'getheader.php';
- echo htmlentities($header);
-?>
- </pre>
- </div>
- </div>
-</div>
- <div class="footer">
- <div class="container">
- <div class="row">
- <div class="text-right">
- <p>Copyright 2014 <a class="footer-a" href="//www.moehm.org/" target="_blank" title="https://www.moehm.org/">Maximilian M&ouml;hring</a></p>
- </div>
- </div>
- </div>
- </div>
-</body>