Web project containing static content, default bootstrap theme

This commit is contained in:
2015-11-11 12:46:50 -05:00
commit 2a42afb173
50 changed files with 23538 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
using System.Web.Mvc;
using System.Web.Routing;
namespace Web
{
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Pages", action = "Index", id = UrlParameter.Optional }
);
}
}
}