mirror of
https://github.com/NamelessMC/Nameless
synced 2026-08-18 06:29:04 -04:00
17 lines
338 B
PHP
17 lines
338 B
PHP
<?php
|
|
/*
|
|
* Made by Samerton
|
|
* https://github.com/NamelessMC/Nameless/
|
|
* NamelessMC version 2.0.0-pr13
|
|
*
|
|
* License: MIT
|
|
*
|
|
* Display either homepage (with news or custom content) or portal
|
|
*/
|
|
|
|
// Home page or portal?
|
|
if (Settings::get('home_type') === 'portal') {
|
|
require('portal.php');
|
|
} else {
|
|
require('home.php');
|
|
}
|