Completed
Push — master ( eeab4c...fe15ce )
by mains
02:52
created

about-us.php (5 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php include 'php/jodel-web.php';?>
2
<!DOCTYPE html>
3
<html lang="en">
4
	<head>
5
		<title>About us - JodelBlue Web-App and Browser-Client</title>
6
		
7
		<meta charset="utf8">
8
		<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
9
		<meta http-equiv="x-ua-compatible" content="ie=edge">
10
		
11
		<meta name="description" content="We try to get the best Jodel experience on your Browser. This allows you to use jodel on your desktop PC or Windows Phone. I am pleased if you participate in the development on GitHub.">
12
		<meta name="keywords" content="jodelblue, jodel, blue, webclient, web, client">
13
		
14
		<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/css/bootstrap.min.css" integrity="sha384-AysaV+vQoT3kOAXZkl02PThvDr8HYKPZhNT5h/CXfBThSRXQ6jW5DO2ekP5ViFdi" crossorigin="anonymous">
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 218 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
15
		<link rel="stylesheet" href="<?php echo $baseUrl;?>css/font-awesome.min.css">
16
		<link rel="stylesheet" href="<?php echo $baseUrl;?>style.css" type="text/css">
17
		
18
		<link rel="shortcut icon" type="image/x-icon" href="<?php echo $baseUrl;?>img/favicon/favicon.ico">
19
		<link rel="icon" type="image/x-icon" href="<?php echo $baseUrl;?>img/favicon/favicon.ico">
20
		<link rel="icon" type="image/gif" href="<?php echo $baseUrl;?>img/favicon/favicon.gif">
21
		<link rel="icon" type="image/png" href="<?php echo $baseUrl;?>img/favicon/favicon.png">
22
		<link rel="apple-touch-icon" href="<?php echo $baseUrl;?>img/favicon/apple-touch-icon.png">
23
		<link rel="apple-touch-icon" href="<?php echo $baseUrl;?>img/favicon/apple-touch-icon-57x57.png" sizes="57x57">
24
		<link rel="apple-touch-icon" href="<?php echo $baseUrl;?>img/favicon/apple-touch-icon-60x60.png" sizes="60x60">
25
		<link rel="apple-touch-icon" href="<?php echo $baseUrl;?>img/favicon/apple-touch-icon-72x72.png" sizes="72x72">
26
		<link rel="apple-touch-icon" href="<?php echo $baseUrl;?>img/favicon/apple-touch-icon-76x76.png" sizes="76x76">
27
		<link rel="apple-touch-icon" href="<?php echo $baseUrl;?>img/favicon/apple-touch-icon-114x114.png" sizes="114x114">
28
		<link rel="apple-touch-icon" href="<?php echo $baseUrl;?>img/favicon/apple-touch-icon-120x120.png" sizes="120x120">
29
		<link rel="apple-touch-icon" href="<?php echo $baseUrl;?>img/favicon/apple-touch-icon-128x128.png" sizes="128x128">
30
		<link rel="apple-touch-icon" href="<?php echo $baseUrl;?>img/favicon/apple-touch-icon-144x144.png" sizes="144x144">
31
		<link rel="apple-touch-icon" href="<?php echo $baseUrl;?>img/favicon/apple-touch-icon-152x152.png" sizes="152x152">
32
		<link rel="apple-touch-icon" href="<?php echo $baseUrl;?>img/favicon/apple-touch-icon-180x180.png" sizes="180x180">
33
		<link rel="apple-touch-icon" href="<?php echo $baseUrl;?>img/favicon/apple-touch-icon-precomposed.png">
34
		<link rel="icon" type="image/png" href="<?php echo $baseUrl;?>img/favicon/favicon-16x16.png" sizes="16x16">
35
		<link rel="icon" type="image/png" href="<?php echo $baseUrl;?>img/favicon/favicon-32x32.png" sizes="32x32">
36
		<link rel="icon" type="image/png" href="<?php echo $baseUrl;?>img/favicon/favicon-96x96.png" sizes="96x96">
37
		<link rel="icon" type="image/png" href="<?php echo $baseUrl;?>img/favicon/favicon-160x160.png" sizes="160x160">
38
		<link rel="icon" type="image/png" href="<?php echo $baseUrl;?>img/favicon/favicon-192x192.png" sizes="192x192">
39
		<link rel="icon" type="image/png" href="<?php echo $baseUrl;?>img/favicon/favicon-196x196.png" sizes="196x196">
40
		<meta name="msapplication-TileImage" content="<?php echo $baseUrl;?>img/favicon/win8-tile-144x144.png"> 
41
		<meta name="msapplication-TileColor" content="#5682a3"> 
42
		<meta name="msapplication-navbutton-color" content="#5682a3"> 
43
		<meta name="application-name" content="JodelBlue"/> 
44
		<meta name="msapplication-tooltip" content="JodelBlue"/> 
45
		<meta name="apple-mobile-web-app-title" content="JodelBlue"/> 
46
		<meta name="msapplication-square70x70logo" content="<?php echo $baseUrl;?>img/favicon/win8-tile-70x70.png"> 
47
		<meta name="msapplication-square144x144logo" content="<?php echo $baseUrl;?>img/favicon/win8-tile-144x144.png"> 
48
		<meta name="msapplication-square150x150logo" content="<?php echo $baseUrl;?>img/favicon/win8-tile-150x150.png"> 
49
		<meta name="msapplication-wide310x150logo" content="<?php echo $baseUrl;?>img/favicon/win8-tile-310x150.png"> 
50
		<meta name="msapplication-square310x310logo" content="<?php echo $baseUrl;?>img/favicon/win8-tile-310x310.png"> 
51
	</head>
52
	
53
	<body>
54
		<header>
55
			<nav class="navbar navbar-full navbar-dark navbar-fixed-top">
56
				<div class="container">					
57
					<a id="comment-back" href="./">
58
						<i class="fa fa-angle-left fa-3x"></i>
59
					</a>
60
					<h1>
61
						<a href="./" class="spinnable">
62
							JodelBlue <i class="fa fa-refresh fa-1x"></i>
63
						</a>
64
					</h1>					
65
				</div>
66
			</nav>
67
		</header>
68
		
69
		<div class="mainContent container">		
70
			<div class="content row">
71
				<article class="topContent col-sm-12">
72
73
					<content id="posts">
74
						<article id="aboutUs" class="jodel" style="background-color: #5682a3;">
75
							<content>
76
								<h2>About us</h2>
77
78
								<p>This page was not created by "The Jodel Venture GmbH", the official developers of the Jodel app.</p>
79
								<p>All content is from the official Jodel app, all rights remain with the respective owners. We do not store any data or spread them.</p>
80
								<p>[email protected]</p>
81
								<p><a style="color: #fff; text-decoration: underline;" href="https://github.com/mmainstreet/jodel-web">On Github</a></p>
82
							</content>
83
84
							<footer>
85
								<table>
86
									<tr>
87
										<td class="time">
88
											<span data-tooltip="Time">
89
												<i class="fa fa-clock-o"></i>
90
												0s
91
											</span> 
92
										</td>
93
										<td class="comments">
94
											
95
										</td>
96
										<td class="distance">
97
98
99
											<span data-tooltip="Author">
100
												<i class="fa fa-user-o"></i> JodelBlue |
101
											</span>
102
													
103
104
105
106
											<span data-tooltip="Distance">
107
												<i class="fa fa-map-marker"></i>
108
												0 km
109
											</span>
110
										</td>
111
									</tr>
112
								</table>
113
							</footer>
114
						</article>
115
116
					</content>
117
				</article>
118
			</div>
119
			<?php include './template/nav-bottom.php';?>
120
		</div>
121
		
122
		
123
		<!-- jQuery, Tether, Bootstrap JS and own-->
124
		<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js" integrity="sha384-3ceskX3iaEnIogmQchP8opvBy3Mi7Ce34nWjpBIwVTHfGYWQS9jwHDVRnpKKHJg7" crossorigin="anonymous"></script>
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 198 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
125
    	<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.3.7/js/tether.min.js" integrity="sha384-XTs3FgkjiBgo8qjEjBk0tGmf3wPrWtA6coPfQDfFEY8AnYJwjalXCiosYRBIBZX8" crossorigin="anonymous"></script>
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 205 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
126
    	<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.5/js/bootstrap.min.js" integrity="sha384-BLiI7JTZm+JWlgKa0M0kGRpJbF2J8q+qreVrKBC47e3K6BW78kGLrCkeRX6I9RoK" crossorigin="anonymous"></script>
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 212 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
127
128
	</body>
129
</html>
130
0 ignored issues
show
As per coding style, files should not end with a newline character.

This check marks files that end in a newline character, i.e. an empy line.

Loading history...
131