mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 02:39:46 +02:00
14 lines
No EOL
513 B
PHP
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
|
|
}
|
|
?>
|