Skip to content
Grav 2.1 is out: every page speaks Markdown. Read the announcement →

Assets PHP addCSS() with theme:// not working as expected

Solved by Daniel Idzerda View solution

Started by Daniel Idzerda 9 years ago · 1 replies · 965 views
9 years ago

The theme that I am currently trying to extend (Clean-Blog) doesn't have the custom.css in its template files like antimatter has. So to avoid having to override the whole base.html.twig I thought I could add it in the theme PHP file through the assets interface. The code that I am using is as follows:

PHP
namespace Grav\Theme;

use Grav\Common\Theme;

class CleanBlogChild extends Theme {

    public static function getSubscribedEvents()
        {
          return [
              'onThemeInitialized' => ['onThemeInitialized', 0]
          ];
        }

    public function onThemeInitialized() {
        $this->grav['assets']->addCss('theme://css/custom.css', 5);
    }
}

if i understand this correctly it should output a link with the url as follows /user/themes/clean-blog-child/css/custom.css instead it is outputting user/themes/clean-blog-child/css/custom.css so when it is inserting on a page not at the root of the site it fails to load. For example a blog post.

This is my first foray into Grav so I might just be missing something.
Thanks,

Suggested topics

Topic Participants Replies Views Activity
Themes & Styling · by FrViPofm, 17 hours ago
1 31 4 hours ago
Themes & Styling · by stuart young, 1 month ago
3 480 1 month ago
Themes & Styling · by Sebadamus, 2 months ago
5 481 2 months ago
Themes & Styling · by martynfoster735, 2 months ago
1 460 2 months ago
Themes & Styling · by Justin Young, 2 months ago
1 490 2 months ago