Hello!
I need to customize my views so that they look good on a computer screen and
on a smart phone.
One way to do so, It think, is to have separate layout definitions and then
do something like:
{{if session.platform == 'mobile':}}
{{extend 'mobile-layout.html}}
{{else:}}
{{extend 'desktop-layout.html'}}
{{pass}}
This does not seem to be working - I get lots of syntax errors (can't even
figure out where they are!)
Is this approach wrong? Is it possible to have a conditional "extend" ?
Is there a smarter/better way to make the view rendering platform dependent?
Thanks,
Luis.