aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarcinzelent <zelent.marcin@protonmail.com>2017-11-20 14:36:20 +0100
committermarcinzelent <zelent.marcin@protonmail.com>2017-11-20 14:36:20 +0100
commitf6f830d066635c91763dd1ae6248c8c189e6fe7e (patch)
tree7cf4d3315bda5829046e029cf52d2e2d9a167380 /AirPollutionWebApi/Views/Shared
parent7ff8524f57d6f4641e4a3dbea6ff6dbe9e346deb (diff)
Added WebApi.
Diffstat (limited to 'AirPollutionWebApi/Views/Shared')
-rw-r--r--AirPollutionWebApi/Views/Shared/Error.cshtml5
-rw-r--r--AirPollutionWebApi/Views/Shared/_Layout.cshtml9
2 files changed, 14 insertions, 0 deletions
diff --git a/AirPollutionWebApi/Views/Shared/Error.cshtml b/AirPollutionWebApi/Views/Shared/Error.cshtml
new file mode 100644
index 0000000..20ec06a
--- /dev/null
+++ b/AirPollutionWebApi/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/AirPollutionWebApi/Views/Shared/_Layout.cshtml b/AirPollutionWebApi/Views/Shared/_Layout.cshtml
new file mode 100644
index 0000000..54f6729
--- /dev/null
+++ b/AirPollutionWebApi/Views/Shared/_Layout.cshtml
@@ -0,0 +1,9 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>@ViewBag.Title</title>
+</head>
+<body>
+ @RenderBody()
+</body>
+</html>