Is it possible use more than two templates when using a MVC / MVT Architecture? I've got a feeling it is possible but it might just be complicated?
I've designed a nice front-end but I feel that this template won't exactly cater for my about page and portal because it will be a lot more complicated and I don't think that everything could exactly go into the base template unless I found a away to hide and show certain parts of the code within the page so it projects the right view if that makes sense on the correct page.
Any help would be much appreciated!
Mark
You can definitely have multiple templates. Here are several cases:
In general I recommend using a different template for each view. Each of these templates then 'extends' a base template (perhaps with a level or two in between) where you define your page style.
For example: 'about' and 'contact' can both extend 'info_page' which extends 'base'. Meanwhile 'blog' and 'news' both extend 'feed_page' which extends 'base'.
I was a little confused what problem you're stuck on and how, so maybe I missed something. Feel free to leave a comment.