Web project containing static content, default bootstrap theme
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user