www/link/index.php

95 lines
3.2 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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="My Social Media Links">
<meta name="keywords" content="personal,website,links,social,media,contact,communication">
<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>My Links | Aliberk Sandıı</title>
</head>
<body>
<header>
<a href="/" id="hlogo"><img src="/assets/images/icons/favicon.png"></a>
<div class="tmpinfo">This page is still in active development</div>
</header>
<div class="block-out">
<div class="block-in">
<ul class="basic-list">
<li class="block-list-in block-hover"><a href="/about">
<p class="in-p">About me</p>
</a>
</li>
<li class="block-list-in block-hover"><a href="/now">
<p class="in-p">What I am doing these days</p>
</a>
</li>
<li class="block-list-in block-hover"><a href="https://blog.asandikci.com/">
<p class="in-p">Personal Blog</p>
</a>
</li>
<li class="block-list-in block-hover"><a href="mailto::asandikci@aliberksandikci.com.tr">
<p class="in-p">▶ Mail ◀</p>
</a></li>
<li class="block-list-in block-hover"><a href="https://s.aliberksandikci.com.tr/@asandikci">
<p class="in-p">Calckey (Mastodon, Fediverse)</p>
</a></li>
<li class="block-list-in block-hover"><a href="https://www.instagram.com/aliberksandikci/">
<p class="in-p">Instagram (not active these days)</p>
</a></li>
<li class="block-list-in">
<p class="in-p">Discord: asandikci (not active these days)</p>
</li>
<li class="block-list-in block-hover"><a href="https://linkedin.com/in/asandikci/">
<p class="in-p">LinkedIn (not active generally)</p>
</a></li>
</ul>
</div>
</div>
<footer>
<div class="tmpinfo">This page is still in active development</div>
</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>
</html>