Files
furatalog-web/assets/index.php
T

70 lines
1.9 KiB
PHP
Raw Normal View History

2025-05-20 12:21:13 +02:00
<?php
2026-06-09 21:56:55 +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 = 1;
2026-06-09 22:15:34 +02:00
echo '
2025-05-20 12:21:13 +02:00
<!DOCTYPE html>
<html lang="en">
2026-06-09 22:15:34 +02:00
<head>' .
file_get_contents("/var/www/furatalog-cdn/mainHead.html") . '
2025-05-20 12:21:13 +02:00
<title>Assets - Furatalog.xyz</title>
</head>
<body>
<div class="navigation">
<a href="/">Home </a>
<a class="nocursor nohover">|</a>
<a href="/assets/" class="navitem active">Assets</a>
<a href="/bases/" class="navitem">Avatar-Bases</a>
<a href="/avatars/" class="navitem">Avatars</a>
<a href="/worlds/" class="navitem">Worlds</a>
<div class="dropdown">
<a class="dropbtn">▼</a>
<div class="dropdown-content">
<a href="/assets/" class="active">Assets</a>
<a href="/bases/">Avatar-Bases</a>
<a href="/avatars/">Avatars</a>
<a href="/worlds/">Worlds</a>
</div>
</div>
<div class="right">
<form action="./">
2026-06-09 22:15:34 +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 22:22:17 +02:00
';
echo $lib->printItemLists($section);
echo '
2025-05-20 12:21:13 +02:00
</div>
2026-06-09 22:22:17 +02:00
';
echo $lib->printNsfwCheck();
echo '
2026-06-09 22:20:17 +02:00
<div class="pager">';
echo $lib->printPagerNumbers();
echo '
</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 22:22:17 +02:00
';
echo $lib->printScriptSec();
echo '
2025-05-20 12:21:13 +02:00
</body>
2026-06-09 22:15:34 +02:00
</html>';
2026-06-09 21:56:55 +02:00
ob_end_flush();
?>