2020-10-13 17:11:32 +02:00
< ? php
2020-12-20 00:33:23 +01:00
include " internal/header.php " ;
include " internal/footer.php " ;
include " internal/mysql.php " ;
2020-10-13 17:11:32 +02:00
2021-01-02 00:45:10 +01:00
if ( strpos ( $_SERVER [ 'HTTP_HOST' ], '.onion' ) !== false ) {
$heIMG = " /internal/getImage.php?imgID=1 " ;
$abuseIPIMG = " /internal/getImage.php?imgID=2 " ;
} else {
$abuseIPIMG = " https://www.abuseipdb.com/contributor/45130.svg " ;
$heIMG = " https://ipv6.he.net/certification/create_badge.php?pass_name=jonasled&badge=3 " ;
}
2020-12-20 01:34:10 +01:00
getHeader ( " Jonas Leder " , " home " );
2020-10-13 17:11:32 +02:00
?>
2020-12-20 00:33:23 +01:00
< div class = " center " >
2021-02-28 11:25:49 +01:00
< img id = " homeImage " src = " img/bildHome.webp " data - noPreview = " true " >
2020-10-13 17:11:32 +02:00
< h2 >& Uuml ; ber mich </ h2 >
2021-01-20 21:43:42 +01:00
< p class = " left block " > Hallo , mein Name ist Jonas Leder . Ich bin aktuell Student an der Dualen Hochschule Baden - Württemberg in Mannheim Fachrichtung Angewandte Informatik .</ p >
2020-12-27 23:44:33 +01:00
< p >< a href = " about.php " >< button > Mehr </ button ></ a ></ p >
2020-10-13 17:11:32 +02:00
< div class = " spacer " ></ div >
< h2 > Blog </ h2 >
< div id = " blog " >
< ? php
$result = $conn -> query ( " SELECT * FROM posts order by id desc limit $homeMaxPost " );
if ( $result -> num_rows > 0 ) {
while ( $row = $result -> fetch_assoc ()) {
$title = $row [ " title " ];
$id = $row [ " id " ];
$content = explode ( " " , $row [ " content " ]);
$contentNew = " " ;
if ( count ( $content ) > 800 ){
$temp = str_split ( $content , 800 );
$contentNew = $temp [ 0 ];
$contentNew = $content . explode ( " " , $temp [ 1 ])[ 0 ] . " ... " ;
} else {
$contentNew = $row [ " content " ];
}
echo ( <<< EOF
2021-01-20 22:35:57 +01:00
< article class = " breakWord " >
2020-10-13 17:11:32 +02:00
< h2 > $title </ h2 >
2021-01-20 22:35:57 +01:00
< p breakWord > $contentNew </ p >
2020-10-13 17:11:32 +02:00
< p class = " center " >< a href = " /post.php?id= $id " >< button > Mehr lesen </ button ></ a ></ p >
</ article >
EOF );
}
}
?>
</ div >
2020-11-17 20:36:57 +01:00
< div id = " banner " >
2020-10-13 17:11:32 +02:00
< h2 > Banner </ h2 >
2021-02-28 11:25:49 +01:00
< a target = " _blank " href = " https://ipv6.he.net " >< img src = " <?php echo( $heIMG ); ?> " data - noPreview = " true " >></ a >
< a target = " _blank " href = " https://www.abuseipdb.com/user/45130 " >< img style = " width: 391px;background: #35c246 linear-gradient(rgba(255,255,255,0), rgba(255,255,255,.3) 50%, rgba(0,0,0,.2) 51%, rgba(0,0,0,0));padding: 5px; " src = " <?php echo( $abuseIPIMG ); ?> " style = " width: 401px; " data - noPreview = " true " >></ a >
2020-11-17 20:36:57 +01:00
</ div >
2021-01-02 00:53:31 +01:00
< br >
< br >
2021-01-02 11:23:29 +01:00
< ? php
if ( strpos ( $_SERVER [ 'HTTP_HOST' ], '.onion' ) == false ) {
2021-01-25 22:14:36 +01:00
echo ( '<p class="breakWord">Diese Website ist auch als hidden Service unter folgendem URL zu erreichen: <a href="http://jonasledtmdcrenuxuobwqn3n6onq3smssicbeyocolgx4sk75xwmxqd.onion">jonasledtmdcrenuxuobwqn3n6onq3smssicbeyocolgx4sk75xwmxqd.onion</a></p>' );
2021-01-02 11:23:29 +01:00
}
?>
2020-10-13 17:11:32 +02:00
</ div >
2020-12-20 00:33:23 +01:00
< ? php
getFooter ();