Primo Commit

This commit is contained in:
root
2026-01-03 11:59:31 +01:00
commit 719d750a7a
72 changed files with 14088 additions and 0 deletions

31
index.php Normal file
View File

@@ -0,0 +1,31 @@
<?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';