summaryrefslogtreecommitdiff
path: root/header.php
blob: 1a41233bfb3f1d8c6861b7dc306d20b47dc28d6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!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>