I have a home page which is a blog by default. I want the user to be able to turn the blog off in case they want a static page instead [set in the database]
Problem is:
1) Do I do the business in the view (Which I know is bad practice)
or
2) Do I do it all in the controller (Which will require me to pull the boolean value from the database)
Thanks!