Is there any way that i can extend template from a subtemplate.
For example if i have an application of some kind, which supports plugins or addons.
And if i have <div> somewhere on the page for example
<div id="status_bar" class="status_bar">Some content here</div>
|
can i 'insert'
<div id="plugin_1">Other content here</div> |
between the opening and closing div.
Or for example can i change it to something like
<div id="status_bar" class="status_bar_extended">Same old content here or with something new</div> |