How to use Free CSS Templates with ASP.NET MVC 4?
asp.net-mvc-4
Solution
It's simple:
Move your css and images into `~/Contents` folder.
Move your js files into `~/Scripts` folder
Copy and paste your `html` snippets to `cshtml` files
On 3rd step you need to port the layout portion of your template to `~/Veiws/Shared/_Layout.cshtml`. Here you need to point references to your css and js correctly. For example:
And also you need to be aware that `_Layout.cshtml` should contain `@RenderBody()`. That's where all child views will be inserted.
Just found a video with basic demonstration of process: link
Problem
I need to use a css template for webpage I am building but I don't know how to use in asp.net mvc4. so How to use CSS Templates with ASP.NET MVC 4 in visual studio 2012 for web application?