(a) A bundle (bundle 1) holds the main parent Twig template.
(b) Another bundle (bundle 2) holds a load of controllers and those controllers each render a Twig template that's inside that bundle (bundle 2). That template also extends from the main parent one mentioned above (bundle 1). Hard coding an absolute path to the main parent template is fine.
(c) The parent template (inside bundle 1) also embeds/includes another template, which is stored in the other bundle (bundle 2).
Can I set a relative path for part (c) above so that if I created another bundle (bundle 3) it would automatically work (parent template includes templates from bundle that calls it)? It would pick up the main parent as it is an absolute path, but would it pick up part (c) above? Obviously I can't use an absolute path for the templates that the parent one is embedding/including.