54 lines
1.9 KiB
PHP
54 lines
1.9 KiB
PHP
<?php
|
|
ini_set('display_errors', 1);
|
|
ini_set('display_startup_errors', 1);
|
|
error_reporting(E_ALL);
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Ashley</title>
|
|
<link rel="shortcut icon" href="img/ashley.png" type="image/jpg">
|
|
<link rel="stylesheet" href="css/style.css">
|
|
</head>
|
|
|
|
<body>
|
|
<?php include("inc/top.php"); ?>
|
|
<div class="container">
|
|
<?php include("inc/header.php"); ?>
|
|
<div class="section">
|
|
<h2>Introduction</h2>
|
|
<p>hello im ashley and welcome to my super epic webpage</p>
|
|
<p>this is basically a shitpost so don't expect it to look good!!!</p>
|
|
<br>
|
|
<p><a href="0x412E93F5.asc">My PGP key</a></p>
|
|
<hr style="border-color:var(--fg-primary);margin: 8px 0">
|
|
<div class="center">
|
|
<a href="https://artixlinux.org/"><img src="img/xenia.gif" alt="Linux NOW!" /></a>
|
|
<a href="https://yesterweb.org/no-to-web3/"><img src="img/web3.gif" alt="Keep the web free, say NO to Web3!" /></a>
|
|
<a href="https://git.lgbt/root"><img src="img/freeware.gif" alt="Freeware" /></a>
|
|
|
|
<img src="img/bookmark.gif" alt="Bookmark this page!" />
|
|
<img src="img/chrmevil.gif" alt="Google Chrome IS EVIL!" />
|
|
|
|
<img src="img/antinazi.gif" alt="NO NAZI, NO FASCISM, NO RACISM" />
|
|
<img src="img/antinft.gif" alt="THIS IS AN Anti-NFT SITE" />
|
|
<img src="img/antifa.gif" alt="AntiFa" />
|
|
<img src="img/gay.gif" alt="This website is GAY" />
|
|
|
|
<a href="ps2"><img src="img/freeps2.gif" alt="CLICK HERE to WIN a PS2!" /></a>
|
|
</div>
|
|
<ul style="display:none;">
|
|
<?php foreach($links as $link) { ?>
|
|
<li><a href="<?=$link["link"]?>" rel="me"><?=$link["name"]?></a></li>
|
|
<?php } ?>
|
|
</ul>
|
|
</div>
|
|
<?php include("inc/footer.php"); ?>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|