29 lines
859 B
PHP
29 lines
859 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<?php
|
|
$title = "Marcel's Homepage";
|
|
?>
|
|
|
|
<head>
|
|
<link rel="stylesheet" href="css/base.css" type="text/css">
|
|
<title> <?php echo $title; ?> </title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="topbar" class="darkerbar"><h1><?php echo $title; ?></h1> </div>
|
|
|
|
<div id="content">
|
|
<p>Hi, I am Marcel and this is my server (and my ugly homepage)! Lorem ipsum dolor sit amet or something.<br>
|
|
Most of my services are for private use, because I don't want to track every user on my server or guarantee flawless connectivity.<br>
|
|
If you know me personally, you may ask me for an account on one of my services.
|
|
If you don't know me personally, then I probably won't give you access to my services.</p>
|
|
<div class="item-list">
|
|
<?php include "/var/www/html/root/homepagehtml.html" ?>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<footer id="bottombar" class="darkerbar"> </footer>
|
|
</body>
|
|
</html>
|