mirror of
https://github.com/saintly2k/FoOlSlideX.git
synced 2025-02-20 11:13:13 +08:00
11 lines
174 B
PHP
11 lines
174 B
PHP
<?php
|
|
|
|
if(isset($_GET["manga"])) {
|
|
include("views/pages/reader/manga.php");
|
|
}
|
|
if(!isset($_GET["manga"])) {
|
|
include("views/pages/reader/chapter.php");
|
|
}
|
|
|
|
?>
|