1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 02:39:46 +02:00
Oinktube/view/include/bootstrap.css.php
Caleb Mazalevskis 27a7925b98
Refactor.
2022-01-06 21:44:29 +08:00

14 lines
No EOL
513 B
PHP

<?php
global $global;
$global['userBootstrapLatest'] = 0;
if (empty($global['userBootstrapLatest'])) {
?>
<link href="<?php echo getURL('view/bootstrap/css/bootstrap.min.css'); ?>" rel="stylesheet" type="text/css"/>
<?php
} else {
?>
<link href="<?php echo getURL('node_modules/bootstrap/dist/css/bootstrap.min.css'); ?>" rel="stylesheet" type="text/css"/>
<link href="<?php echo getURL('view/bootstrap/fixes.css'); ?>" rel="stylesheet" type="text/css"/>
<?php
}
?>