From 7d5315be552a6cfbdac67d33a15486ceb81b215c Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Thu, 19 Mar 2015 00:17:32 -0400 Subject: [PATCH] home page --- src/UntappedWidgetGenerator.Web/IndexModule.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/UntappedWidgetGenerator.Web/IndexModule.cs b/src/UntappedWidgetGenerator.Web/IndexModule.cs index 7601151..89eb06e 100644 --- a/src/UntappedWidgetGenerator.Web/IndexModule.cs +++ b/src/UntappedWidgetGenerator.Web/IndexModule.cs @@ -9,6 +9,7 @@ namespace UntappedWidgetGenerator.Web { public IndexModule() { + Get["/"] = x => { return View["Views/Index/Index.cshtml", "tparnell"]; }; Get["/{username}"] = parameters => { return View["Views/Index/Index.cshtml", (string)parameters.username];