aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'PollutometerWebApi/Views')
-rw-r--r--PollutometerWebApi/Views/Home/Index.cshtml1
-rw-r--r--PollutometerWebApi/Views/Shared/Error.cshtml5
-rw-r--r--PollutometerWebApi/Views/Shared/_Layout.cshtml9
-rw-r--r--PollutometerWebApi/Views/Web.config30
-rw-r--r--PollutometerWebApi/Views/_ViewStart.cshtml3
5 files changed, 48 insertions, 0 deletions
diff --git a/PollutometerWebApi/Views/Home/Index.cshtml b/PollutometerWebApi/Views/Home/Index.cshtml
new file mode 100644
index 0000000..2501eee
--- /dev/null
+++ b/PollutometerWebApi/Views/Home/Index.cshtml
@@ -0,0 +1 @@
+<h2>Welcome to ASP.NET MVC @ViewData["Version"] on @ViewData["Runtime"]!</h2>
diff --git a/PollutometerWebApi/Views/Shared/Error.cshtml b/PollutometerWebApi/Views/Shared/Error.cshtml
new file mode 100644
index 0000000..20ec06a
--- /dev/null
+++ b/PollutometerWebApi/Views/Shared/Error.cshtml
@@ -0,0 +1,5 @@
+@model System.Web.Mvc.HandleErrorInfo
+
+<div>
+ <h2>An error occurred while processing your request.</h2>
+</div>
diff --git a/PollutometerWebApi/Views/Shared/_Layout.cshtml b/PollutometerWebApi/Views/Shared/_Layout.cshtml
new file mode 100644
index 0000000..54f6729
--- /dev/null
+++ b/PollutometerWebApi/Views/Shared/_Layout.cshtml
@@ -0,0 +1,9 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>@ViewBag.Title</title>
+</head>
+<body>
+ @RenderBody()
+</body>
+</html>
diff --git a/PollutometerWebApi/Views/Web.config b/PollutometerWebApi/Views/Web.config
new file mode 100644
index 0000000..35da8d0
--- /dev/null
+++ b/PollutometerWebApi/Views/Web.config
@@ -0,0 +1,30 @@
+<?xml version="1.0"?>
+<configuration>
+ <configSections>
+ <sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
+ <section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
+ <section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
+ </sectionGroup>
+ </configSections>
+ <system.web.webPages.razor>
+ <host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
+ <pages pageBaseType="System.Web.Mvc.WebViewPage">
+ <namespaces>
+ <add namespace="System.Web.Mvc" />
+ <add namespace="System.Web.Mvc.Ajax" />
+ <add namespace="System.Web.Mvc.Html" />
+ <add namespace="System.Web.Routing" />
+ <add namespace="PollutometerWebApi" />
+ </namespaces>
+ </pages>
+ </system.web.webPages.razor>
+ <appSettings>
+ <add key="webpages:Enabled" value="false" />
+ </appSettings>
+ <system.webServer>
+ <handlers>
+ <remove name="BlockViewHandler" />
+ <add name="BlockViewHandler" path="*" verb="*" preCondition="integratedMode" type="System.Web.HttpNotFoundHandler" />
+ </handlers>
+ </system.webServer>
+</configuration>
diff --git a/PollutometerWebApi/Views/_ViewStart.cshtml b/PollutometerWebApi/Views/_ViewStart.cshtml
new file mode 100644
index 0000000..2de6241
--- /dev/null
+++ b/PollutometerWebApi/Views/_ViewStart.cshtml
@@ -0,0 +1,3 @@
+@{
+ Layout = "~/Views/Shared/_Layout.cshtml";
+}