@title() directive works along with the
@template() directive. It is similar to the
@head() directive. However, it is used in child
templates to overide the inherited parent title of a page. The example below shows how this
directive can be applied in template files.
@template('some-template-file')
@title('home')
...new content here...
@template;
@title()
will overide any inherited parent title.