@Amatiq Have a look at the docs about \Grav\Common\Page\Pages and Plugin Event Hooks
In event, or after, onPagesInitialized, you could try the following two options:
$pages = $this->grav['pages'];
$page = $pages->find('/blog/hero-classes');
$page = $pages->get('/path/to-root/user/pages/01.blog/hero-classes');
And, of course, depending on what you want to do and where you are, there are probably more roads that lead to Rome...
last edited 08/23/18 by pamtbaau