Files
furatalog-web/avatars/index.php
T

69 lines
2.1 KiB
PHP
Raw Normal View History

2025-05-20 12:21:13 +02:00
<?php
2026-06-09 23:43:25 +02:00
ob_start();
2025-09-21 14:29:28 +02:00
require_once("/var/www/local/admin/script/furatalog.lib.php");
2025-05-20 12:21:13 +02:00
$lib = new furatalogLib();
$lib->init();
$section = 2;
2026-06-09 23:43:25 +02:00
$data = [];
$data["header"] = file_get_contents("/var/www/furatalog-cdn/mainHead.html");
$data["CurrentItemList"] = $lib->printItemLists($section);
$data["NSFWCheck"] = $lib->printNsfwCheck();
$data["PageNumbers"] = $lib->printPagerNumbers();
$data["ScriptSec"] = $lib->printScriptSec();
echo '
2025-05-20 12:21:13 +02:00
<!DOCTYPE html>
<html lang="en">
2026-06-09 23:43:25 +02:00
<head>' . $data["header"] . '
2025-05-20 12:21:13 +02:00
<title>Avatars - Furatalog.xyz</title>
</head>
<body>
<div class="navigation">
2026-06-09 23:43:25 +02:00
<a href="/">Home </a>
2025-05-20 12:21:13 +02:00
<a class="nocursor nohover">|</a>
2026-06-09 23:47:34 +02:00
<a href="/assets/" class="navitem">Assets</a>
2025-05-20 12:21:13 +02:00
<a href="/bases/" class="navitem">Avatar-Bases</a>
2026-06-09 23:47:34 +02:00
<a href="/avatars/" class="navitem active">Avatars</a>
2025-05-20 12:21:13 +02:00
<a href="/worlds/" class="navitem">Worlds</a>
<div class="dropdown">
<a class="dropbtn">▼</a>
<div class="dropdown-content">
2026-06-09 23:43:25 +02:00
<a href="/assets/" class="active">Assets</a>
2025-05-20 12:21:13 +02:00
<a href="/bases/">Avatar-Bases</a>
2026-06-09 23:43:25 +02:00
<a href="/avatars/">Avatars</a>
2025-05-20 12:21:13 +02:00
<a href="/worlds/">Worlds</a>
</div>
</div>
<div class="right">
<form action="./">
2026-06-09 23:43:25 +02:00
<input name="s" type="text" placeholder="Search 🔍" autoComplete="off" value="' . $_GET["s"] . '">
2025-05-20 12:21:13 +02:00
</form>
</div>
</div>
<div class="main">
2026-06-09 23:43:25 +02:00
' . $data["CurrentItemList"] . '
2025-05-20 12:21:13 +02:00
</div>
2026-06-09 23:43:25 +02:00
' . $data["NSFWCheck"] . '
<div class="pager">' . $data["PageNumbers"] . '
2025-05-28 16:04:29 +02:00
</div>
2025-05-20 12:21:13 +02:00
<footer>
<p>
© 2025 <a href="https://siskel.dev">SiskelDev</a>. All rights reserved.<br>
All trademarks are property of their respective owners in the US and other countries.<br>
Information displayed on furatalog.xyz is provided without any guarantee of accuracy or currency.
</p>
</footer>
2026-06-09 23:43:25 +02:00
' . $data["ScriptSec"] . '
2025-05-20 12:21:13 +02:00
</body>
2026-06-09 23:43:25 +02:00
</html>';
ob_end_flush();