▼
diff --git a/worlds/index.php b/worlds/index.php
index cbde852..468bd2e 100644
--- a/worlds/index.php
+++ b/worlds/index.php
@@ -1,45 +1,57 @@
init();
$section = 4;
-?>
+
+ $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 '
-
-
+' . $data["header"] . '
Worlds - Furatalog.xyz
- printItemLists($section); ?>
+ ' . $data["CurrentItemList"] . '
- printNsfwCheck(); ?>
+ ' . $data["NSFWCheck"] . '
+
- printScriptSec(); ?>
-
-
+ ' . $data["ScriptSec"] . '
-
\ No newline at end of file
+';
+
+ ob_end_flush();
+?>
\ No newline at end of file