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
+37
View File
@@ -0,0 +1,37 @@
using System.Web.Mvc;
namespace Web.Controllers
{
public class PagesController : Controller
{
public ActionResult Index()
{
return View();
}
public ActionResult EDOPublications()
{
return View();
}
public ActionResult OutputFiles()
{
return View();
}
public ActionResult Tips()
{
return View();
}
public ActionResult WhyEDO()
{
return View();
}
public ActionResult DataRequirements()
{
return View();
}
}
}