diff --git a/src/FilterLists.Web/.bowerrc b/src/FilterLists.Web/.bowerrc
deleted file mode 100644
index 6406626ab..000000000
--- a/src/FilterLists.Web/.bowerrc
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "directory": "wwwroot/lib"
-}
diff --git a/src/FilterLists.Web/FilterLists.Web.csproj b/src/FilterLists.Web/FilterLists.Web.csproj
index 09a1fe093..b34a84799 100644
--- a/src/FilterLists.Web/FilterLists.Web.csproj
+++ b/src/FilterLists.Web/FilterLists.Web.csproj
@@ -8,4 +8,7 @@
-
+
+
+
+
\ No newline at end of file
diff --git a/src/FilterLists.Web/Pages/About.cshtml b/src/FilterLists.Web/Pages/About.cshtml
deleted file mode 100644
index 3c090d15f..000000000
--- a/src/FilterLists.Web/Pages/About.cshtml
+++ /dev/null
@@ -1,9 +0,0 @@
-@page
-@model AboutModel
-@{
- ViewData["Title"] = "About";
-}
-
@ViewData["Title"]
-@Model.Message
-
-Use this area to provide additional information.
diff --git a/src/FilterLists.Web/Pages/About.cshtml.cs b/src/FilterLists.Web/Pages/About.cshtml.cs
deleted file mode 100644
index c70ef7d76..000000000
--- a/src/FilterLists.Web/Pages/About.cshtml.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Threading.Tasks;
-using Microsoft.AspNetCore.Mvc.RazorPages;
-
-namespace FilterLists.Web.Pages
-{
- public class AboutModel : PageModel
- {
- public string Message { get; set; }
-
- public void OnGet()
- {
- Message = "Your application description page.";
- }
- }
-}
diff --git a/src/FilterLists.Web/Pages/Contact.cshtml b/src/FilterLists.Web/Pages/Contact.cshtml
deleted file mode 100644
index b683c8216..000000000
--- a/src/FilterLists.Web/Pages/Contact.cshtml
+++ /dev/null
@@ -1,19 +0,0 @@
-@page
-@model ContactModel
-@{
- ViewData["Title"] = "Contact";
-}
-@ViewData["Title"]
-@Model.Message
-
-
- One Microsoft Way
- Redmond, WA 98052-6399
- P:
- 425.555.0100
-
-
-
- Support: Support@example.com
- Marketing: Marketing@example.com
-
diff --git a/src/FilterLists.Web/Pages/Contact.cshtml.cs b/src/FilterLists.Web/Pages/Contact.cshtml.cs
deleted file mode 100644
index 80341a258..000000000
--- a/src/FilterLists.Web/Pages/Contact.cshtml.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Threading.Tasks;
-using Microsoft.AspNetCore.Mvc.RazorPages;
-
-namespace FilterLists.Web.Pages
-{
- public class ContactModel : PageModel
- {
- public string Message { get; set; }
-
- public void OnGet()
- {
- Message = "Your contact page.";
- }
- }
-}
diff --git a/src/FilterLists.Web/Pages/Error.cshtml b/src/FilterLists.Web/Pages/Error.cshtml
deleted file mode 100644
index b1f3143a4..000000000
--- a/src/FilterLists.Web/Pages/Error.cshtml
+++ /dev/null
@@ -1,23 +0,0 @@
-@page
-@model ErrorModel
-@{
- ViewData["Title"] = "Error";
-}
-
-Error.
-An error occurred while processing your request.
-
-@if (Model.ShowRequestId)
-{
-
- Request ID: @Model.RequestId
-
-}
-
-Development Mode
-
- Swapping to Development environment will display more detailed information about the error that occurred.
-
-
- Development environment should not be enabled in deployed applications , as it can result in sensitive information from exceptions being displayed to end users. For local debugging, development environment can be enabled by setting the ASPNETCORE_ENVIRONMENT environment variable to Development , and restarting the application.
-
diff --git a/src/FilterLists.Web/Pages/Error.cshtml.cs b/src/FilterLists.Web/Pages/Error.cshtml.cs
deleted file mode 100644
index a4c497040..000000000
--- a/src/FilterLists.Web/Pages/Error.cshtml.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Diagnostics;
-using System.Linq;
-using System.Threading.Tasks;
-using Microsoft.AspNetCore.Mvc.RazorPages;
-
-namespace FilterLists.Web.Pages
-{
- public class ErrorModel : PageModel
- {
- public string RequestId { get; set; }
-
- public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
-
- public void OnGet()
- {
- RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier;
- }
- }
-}
diff --git a/src/FilterLists.Web/Pages/Index.cshtml b/src/FilterLists.Web/Pages/Index.cshtml
index c7f588fa3..1583fd6d2 100644
--- a/src/FilterLists.Web/Pages/Index.cshtml
+++ b/src/FilterLists.Web/Pages/Index.cshtml
@@ -2,109 +2,4 @@
@model IndexModel
@{
ViewData["Title"] = "Home page";
-}
-
-
-
-
-
-
-
-
-
-
-
-
-
- Learn how to build ASP.NET apps that can run anywhere.
-
- Learn More
-
-
-
-
-
-
-
-
- There are powerful new features in Visual Studio for building modern web apps.
-
- Learn More
-
-
-
-
-
-
-
-
- Bring in libraries from NuGet, Bower, and npm, and automate tasks using Grunt or Gulp.
-
- Learn More
-
-
-
-
-
-
-
-
- Learn how Microsoft's Azure cloud platform allows you to build, deploy, and scale web apps.
-
- Learn More
-
-
-
-
-
-
-
- Previous
-
-
-
- Next
-
-
-
-
-
-
Application uses
-
- Sample pages using ASP.NET Core Razor Pages
- Bower for managing client-side libraries
- Theming using Bootstrap
-
-
-
-
-
-
+}
\ No newline at end of file
diff --git a/src/FilterLists.Web/Pages/Index.cshtml.cs b/src/FilterLists.Web/Pages/Index.cshtml.cs
index 3d70b0f6a..e64bc60e4 100644
--- a/src/FilterLists.Web/Pages/Index.cshtml.cs
+++ b/src/FilterLists.Web/Pages/Index.cshtml.cs
@@ -1,9 +1,4 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Threading.Tasks;
-using Microsoft.AspNetCore.Mvc;
-using Microsoft.AspNetCore.Mvc.RazorPages;
+using Microsoft.AspNetCore.Mvc.RazorPages;
namespace FilterLists.Web.Pages
{
@@ -11,7 +6,6 @@ public class IndexModel : PageModel
{
public void OnGet()
{
-
}
}
-}
+}
\ No newline at end of file
diff --git a/src/FilterLists.Web/Pages/_Layout.cshtml b/src/FilterLists.Web/Pages/_Layout.cshtml
index 118d0a7ae..f55e33100 100644
--- a/src/FilterLists.Web/Pages/_Layout.cshtml
+++ b/src/FilterLists.Web/Pages/_Layout.cshtml
@@ -1,71 +1,11 @@
-
+
-
-
+
+
@ViewData["Title"] - FilterLists.Web
-
-
-
-
-
-
-
-
-
-
-
-
-
- @RenderBody()
-
-
- © 2017 - FilterLists.Web
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- @RenderSection("Scripts", required: false)
+@RenderBody()
-
+