31 lines
685 B
PHP
31 lines
685 B
PHP
<?php
|
|
|
|
/*
|
|
# RPIGROUP PLAY - WebApp powered by A.S.V. Studios APPS for RPIGroup
|
|
# ---------------------------------------------------------------
|
|
# Author: A.S.V. Studios APPS
|
|
# Website: https://app.rpigroup.net
|
|
# ---------------------------------------------------------------
|
|
# All Rights is reserved by A.S.V. Studios APPS.
|
|
#
|
|
# Version app: VEDERE IN CHANGELOG.XML
|
|
*/
|
|
|
|
|
|
# Import config file
|
|
include_once './config/config.php';
|
|
|
|
# Import head file
|
|
include_once './static/head.php';
|
|
|
|
|
|
# Load Pages
|
|
if(!$show_app):
|
|
include_once './pages/desktop.php';
|
|
else:
|
|
include_once './pages/mobile.php';
|
|
endif;
|
|
|
|
|
|
# Import footer file
|
|
include_once './static/footer.php'; |