Symfony backend <title>
I use Symfony 1.4.11. And I need to add 开发者_如何转开发custom <title></title>
for each page.In frontend I use slots (here) But I need also to do same in my backend... How to do this? Use generator.yml?
You can use slots. Another way it to use config files if the page titles are static. Eg:
apps/frontend/modules/[module name]/config/view.yml
indexSuccess:
metas:
title: Your custom page title here
精彩评论