www/index.php

70 lines
2.2 KiB
PHP
Raw Normal View History

2023-07-15 17:08:39 +03:00
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<?php
### ERROR HANDLING ###
function warnError($errno, $errstr, $errfile, $errline)
{
echo "<br><p style='padding:0px;margin:0px;background-color:white;color:black;'><b style='color:red;'>Error:</b> [$errno] $errstr <br> in file <b style='color:blue'>$errfile</b> line <b style='color:red'>$errline</b></p>";
}
set_error_handler("warnError");
if (!$_SERVER['DOCUMENT_ROOT']) {
$_SERVER['DOCUMENT_ROOT'] = '/weblink';
}
# TODO separate file
?>
<head>
<!--!Copyright © 2023 Aliberk Sandıı-->
<meta charset="UTF-8">
<!-- Meta Content -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Main Page">
<meta name="keywords" content="personal,website,mainpage,main">
<meta name="author" content="Aliberk Sandıı">
<!-- CSS Files -->
<?php
$dir = new DirectoryIterator($_SERVER['DOCUMENT_ROOT'] . "/assets/css");
foreach ($dir as $file) {
if ((!$file->isDot()) && str_ends_with($file, ".css")) {
echo '<link rel="stylesheet" href="/assets/css/' . $file . '">' . PHP_EOL . ' ';
}
} ?>
<title>Aliberk Sandıı</title>
</head>
<body>
<header>
<a href="/" id="hlogo"><img src="/assets/images/icons/favicon.png"></a>
2023-11-11 20:03:49 +03:00
<div class="tmpinfo">Aliberk Sandıı</div>
2023-07-15 17:08:39 +03:00
</header>
<article style="text-align:center;align-items:center;">
2023-08-13 18:56:36 +03:00
<h1>Hello 👋</h1>
<p>You can learn more about me in <a href="about/">about me</a> page</p>
<p>You can find my all links in the internet with this <a href="link/">link</a></p>
<p>Also you can see my current works in <a href="now/">now</a> page</p>
2023-07-15 17:08:39 +03:00
</article>
2023-11-11 20:03:49 +03:00
<sup style="text-align:center; color:grey;">WIP for website UI/content</sup>
2023-07-15 17:08:39 +03:00
<footer>
2023-11-11 20:03:49 +03:00
<div class="tmpinfo">2023 🄯 Aliberk Sandıı</div>
2023-07-15 17:08:39 +03:00
</footer>
<?php
$dir = new DirectoryIterator($_SERVER['DOCUMENT_ROOT'] . "/assets/js");
foreach ($dir as $file) {
if ((!$file->isDot()) && str_ends_with($file, ".js") && $file != "jquery.js") {
echo '<script src="/assets/js/' . $file . '"></script>' . PHP_EOL . ' ';
}
} ?>
</body>
2023-08-13 18:56:36 +03:00
2023-07-15 17:08:39 +03:00
</html>
<!-- 2023 © Aliberk Sandıı -->
<!-- Version: 0.0.5-m -->