Topic: Theme error (Bootstrap3 CSS)
Hi!
I created a simple theme with last Bootstrap:
<?php $theme_path = 'public/themes/zero/'; $theme_url = Site::url() . 'public/themes/zero/'; Stylesheet::add( $theme_path . 'css/bootstrap.min.css', 'frontend', 1 ); Stylesheet::add( $theme_path . 'css/bootstrap-theme.min.css', 'frontend', 2 ); Stylesheet::add( $theme_path . 'css/styles.css', 'frontend', 3 ); Javascript::add( $theme_path. '../../../../topic/493/theme-error-bootstrap3-css/js/forum_subdomain/jquery.min.js', 'frontend', 1 ); Javascript::add( $theme_path. '../../../../topic/493/theme-error-bootstrap3-css/js/forum_subdomain/bootstrap.js', 'frontend', 2 ); ?> <!DOCTYPE html> <html lang="ru"> <head> <meta charset="utf-8"> <title><?php echo Site::name() . ' - ' . Site::title(); ?></title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="<?php echo Site::description(); ?>"> <meta name="keywords" content="<?php echo Site::keywords(); ?>"> <meta name="robots" content="<?php echo Page::robots(); ?>"> <link rel="icon" href="<?php echo $theme_url; ?>favicon.gif" type="image/x-icon"> <link rel="shortcut icon" href="<?php echo $theme_url; ?>favicon.gif" type="image/x-icon"> <?php Stylesheet::load(); ?> <!--[if lt IE 9]> <script src="<?php echo $theme_url; ?>js/html5.js"></script> <![endif]--> </head> <body> <div class="container" id="outer"> </div> <?php Javascript::load(); ?> </body> </html>
Seems, error occurred while execute Stylesheet::load()
Monstra 2.3.1
PS How I can see PHP errors in Monstra?