Completed
Push — master ( 5b3e55...ba45f1 )
by mains
02:49
created

about-us.php (6 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
$title = 'About us - JodelBlue Web-App and Browser-Client';
0 ignored issues
show
Equals sign not aligned with surrounding assignments; expected 7 spaces but found 1 space

This check looks for multiple assignments in successive lines of code. It will report an issue if the operators are not in a straight line.

To visualize

$a = "a";
$ab = "ab";
$abc = "abc";

will produce issues in the first and second line, while this second example

$a   = "a";
$ab  = "ab";
$abc = "abc";

will produce no issues.

Loading history...
3
$description = '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.';
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 202 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...
4
$backButton = '';
0 ignored issues
show
Equals sign not aligned with surrounding assignments; expected 2 spaces but found 1 space

This check looks for multiple assignments in successive lines of code. It will report an issue if the operators are not in a straight line.

To visualize

$a = "a";
$ab = "ab";
$abc = "abc";

will produce issues in the first and second line, while this second example

$a   = "a";
$ab  = "ab";
$abc = "abc";

will produce no issues.

Loading history...
5
include 'templates/header.php';
6
?>	
7
<div class="mainContent container">		
8
	<div class="content row">
9
		<article class="topContent col-sm-12">
10
11
			<content id="posts">
12
				<article id="aboutUs" class="jodel" style="background-color: #5682a3;">
13
					<content>
14
						<article>
15
							<h2>About us</h2>
16
17
							<p>This page was not created by "The Jodel Venture GmbH", the official developers of the Jodel app.</p>
18
							<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>
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 144 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...
19
20
							<p>If you find bugs or want to help me developing the project, feel free to contact me:</p>
21
							<p>[email protected]</p>
22
23
							<p><a style="color: #fff; text-decoration: underline;" href="https://github.com/mmainstreet/jodel-web">JodelBlue on GitHub</a></p>
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 137 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...
24
						</article>
25
						<hr>
26
						<article>
27
							<div>
28
								<h2>Donate to JodelBlue</h2>
29
								<p class="bitcoin-address">Bitcoin-address: <a href="img/bitcoin-address.png">1DzaUWm9Du6CUQLj6QTGC9kpxzKE3yZZHV</a></p>
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 128 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...
30
								<progress max="3500" value="111"></progress>
31
								<p>
32
									My payments to keep this Project up so far:
33
								</p>
34
								<ul>
35
									<li>Webspace 15€ - goes till 01-03-2018</li>
36
									<li>Domain 20€ - goes till 06-12-2017</li>
37
								</ul>
38
							</div>
39
						</article>
40
					</content>
41
42
					<footer>
43
						<table>
44
							<tr>
45
								<td class="time">
46
									<span data-tooltip="Time">
47
										<i class="fa fa-clock-o"></i>
48
										0s
49
									</span> 
50
								</td>
51
								<td class="comments">
52
								</td>
53
								<td class="distance">
54
									<span data-tooltip="Author">
55
										<i class="fa fa-user-o"></i> JodelBlue |
56
									</span>
57
									<span data-tooltip="Distance">
58
										<i class="fa fa-map-marker"></i>
59
										0 km
60
									</span>
61
								</td>
62
							</tr>
63
						</table>
64
					</footer>
65
				</article>
66
67
			</content>
68
		</article>
69
	</div>
70
	<?php include 'templates/nav-bottom.php';?>
71
</div>
72
<?php include 'templates/footer.php';?>