You can do this just by modifying app/Resources/views/base.html.twig inside your application and override there some blocks from the parent template OroUIBundle:Default:index.html.twig
Just find on parent template all {% block entries to see what can be extended.
For example if you want to add html to {% block header %}
your new block at base.html.twig template can look like
XHTML
1
2
3
4
5
{%blockheader%}
<h1> my html at the start of header block</h1>
{{ parent() }}
<h1> my html at the end of header block</h1>
{%endblockheader%}
Where parent() will render all the html from parent block, if you don’t wont it – you can skip using parent() but make sure it will not break the application.
We collect cookie information with a goal to provide you with the best user experience. By using this website, you agree to our use of cookies. Read Oro Inc.’s Cookie policy.
We collect cookie information with a goal to provide you with the best user experience. By using this website, you agree to our use of cookies. Read Oro Inc.’s Cookie policy.