|
|
|
|
|
by salman89
4473 days ago
|
|
What he's saying is that the views you want to be SEO'd can be generated server side and bootstrapped into Backbone (hook backbone views into an element that is rendered server side). I currently do this too - I'll add that it is helpful to use a templating language that will work both server side and client side so you only write your templates once. What does become a pain is doing routers/controllers both client side and server side - end up writing some code more than once and in different languages. Harder to maintain, especially when changes are made. |
|
Noone is saying there aren't other solutions to the problem, but I think the OP's solution met his goals pretty well and I thought it was a neat concept.