I believe you have to create a new class BasePresenter from which all other
presenters will inherit. In this BasePresenter you can pull any necessary data
from model in method beforeRender and they will be available in all child
presenters.
abstractclassBasePresenterextends\Nette\Application\UI\Presenter{protectedfunctionbeforeRender(){$this->template->info1= xyz;$this->ŧemplate->info2= xzy;}finalclassHomepagePresenterextendsBasePresenter{/**
* In case you need to call beforeRender method in inheriting presenter,
* do not forget to call parent::beforeRender()
*/protectedfunctionbeforeRender(){parent::beforeRender();}}