Search code examples
c#asp.net.netasp.net-mvc-4jquery-templates

Where do I find MVC4 templates for download and how do I install them?


I am somewhat confused. Searched a bunch of ASP.NET related sites but could not find the answer. I must be missing some search word..

I want to find a gallery of MVC4 templates (free/cheap) and apply them to my project. Where do I do that from? I found one codeplex project (http://mvccontribgallery.codeplex.com/), but when I tried applying by copying, there were a bunch of errors (it uses something called SiteMaster, while my project seems to be using something called _layout).

I see a ton of references to people using them, applying them, but I must be missing something very fundamental since I can't even figure out how to find a list of downloadable templates.

What are the simple 1/2/3 steps for finding/getting/installing a template on my MVC4 project?


Solution

  • What do you mean by mvc4 templates? I'm assuming you mean "website template". With MVC you can use any html template, there's no specific template for MVC (that's why you're not finding any of it). You just find any website template and adapt it to mvc context (put css and images under "Content" folder and put html code in _layout and use it like masterpage), not hard to do at all. In fact, so easy to do after you get the idea that no one publish a specific adapted version :)