Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 FuelCMS 中仅包含特定视图的 css 文件?类似于以下内容:
if (!empty($is_blog)): echo css('blog').css($css); endif;
如果这是可能的,我应该在哪里设置$is_blog变量以便在header.php块中识别它?
$is_blog
header.php
实现此目的的一种方法是使用页面变量。在fuel/application/views/_variables目录中,有一个global.php文件,您可以逐页添加覆盖:
$vars['css'] = array('global.css'); $pages['blog|blog/(:any)']['css'] = array('global.css', 'blog.css');
然后,您可以像在视图、块或布局中一样输出$css变量,这些视图、块或布局只会在指定页面上加载覆盖。
$css
http://docs.getfuelcms.com/general/pages-variables