This is what I have done so far:
1) create new ASP.NET MVC 4 project in VS2012.
2) select the "internet application" template (which includes membership and entity framework)
3) test it, it works fine
4) using the package manager, run:
> Install-Package twitter.bootstrap.mvc4
> Install-Package twitter.bootstrap.mvc4.sample
5) in "_ViewStart.cshtml", change
Layout = "~/Views/Shared/_Layout.cshtml"
to
Layout = "~/Views/Shared/_BootstrapLayout.basic.cshtml"
Unfortunately, when I run it now, I get the following error:
The following sections have been defined but have not been rendered for the layout page "~/Views/Shared/_BootstrapLayout.basic.cshtml": "featured".
I'm new to ASP.NET and am not really sure what's going on and why this is happening. Any ideas?
As a second question, once I get this fixed, how can I install a template from http://wrapbootstrap.com? I can't seem to find any instructions for how to do it with ASP.NET.