Added splashscreen

This commit is contained in:
2024-06-06 21:51:18 +02:00
parent 469f917ada
commit c0ffac18e4
9 changed files with 107 additions and 6 deletions
+10 -5
View File
@@ -2,14 +2,19 @@ var express = require('express');
var router = express.Router();
let io = require('../controllers/socketio');
const score = require("../controllers/score");
const score = require('../controllers/score');
const etc = require('../controllers/etc');
/* GET home page. */
router.get('/', function(req, res, next) {
if (score.getEnabled()) { // If scoreboard is enabled
res.render('indexScore', {}); // Render the site with scoreboard
} else { // If scoreboard is not enabled
res.render('index', {}); // Render the site without scoreboard
if(etc.getSplashscreen()) { // If splashscreen is enabled
res.render('splashscreen', {}); // Render splashscreen
} else {
if (score.getEnabled()) { // If scoreboard is enabled
res.render('indexScore', {}); // Render the site with scoreboard
} else { // If scoreboard is not enabled
res.render('index', {}); // Render the site without scoreboard
}
}
});