- @foreach (var sprint in agileService.AgileSprintModels!
- .OrderBy(e => e.EndDate).Reverse())
- {
-
-
- @sprint.Name
-```
-
-## Localized Strings
-
-Localized strings are handled in the Localizations.resx file.
-
-Most text isn't using localized strings yet. And English is the only plan of support in the short term, and probably in
-the long term as well.
-
-## Markdown Files
-
-Documents and Notes are markdown files located in the `wwwroot/content` folder.
-
-Navigation to these pages is handled via the SQL data.
\ No newline at end of file
diff --git a/IGP/wwwroot/content/docs/setup.md b/IGP/wwwroot/content/docs/setup.md
deleted file mode 100644
index bda6974..0000000
--- a/IGP/wwwroot/content/docs/setup.md
+++ /dev/null
@@ -1,93 +0,0 @@
----
-title: Setup
-summary: Get set up on developing this web project.
-created_date: 3/30/2022
-updated_date: 4/7/2022
----
-
-# Overview
-
-This document will contain general setup notes for the project.
-
-## Prerequisite
-
-To understand content in this document, it is recommended to have some software development experience. Particularly
-using GitHub and Visual Studio.
-
-- [GitHub Documentation](https://docs.github.com/en/get-started)
-
-- [Visual Studio Documentation](https://visualstudio.microsoft.com/vs/getting-started/)
-
-To make updates to this website, it is recommended to understand HTML/CSS and C#.
-
-- [C# Documentation](https://docs.microsoft.com/en-us/dotnet/csharp/)
-- [Mozilla's HTML Documentation](https://developer.mozilla.org/en-US/docs/Learn/HTML/Introduction_to_HTML/Getting_started)
-- [W3SCHOOLS' HTML Documentation](https://www.w3schools.com/html/)
-
-Further, you should understand the product and clients this website is for. So it is recommended to play "Immortal:
-Gates of Pyre".
-
-- [IGP Website](https://gatesofpyre.com/)
- - **Please Note:** This product currently has restricted access with it is in a pre-alpha state. If you are not
- aware or interested in IGP, I recommend to wait for product release. Otherwise, check out their discord for steps
- of getting access.
-
-## Installation
-
-Download and install Visual Studio preview.
-
-**Note:** Visual Studio Preview currently doesn't work on Mac for this project. Use a PC, or Rider.
-
-[https://visualstudio.microsoft.com/vs/preview/](https://visualstudio.microsoft.com/vs/preview/)
-
-When installing, ensure you have selected "Workloads | **ASP.NET and web development**" and "Individual components | **
-.NET WebAssembly build tools**".
-
-## Download Project
-
-Get this project from GitHub.
-
-```bash
-git clone https://github.com/JonathanMcCaffrey/IGP-Fan-Reference.git
-```
-
-## Project Tree
-
-```
-C:.
-├───.github
-│ └───workflows # Workflows to deploy website
-├───Components # Components used be website
-├───Contexts
-├───IGP
-│ ├───Pages # Website pages
-│ └───wwwroot
-│ ├───css
-│ ├───generated # Files generated by IGP_Convert. Do not edit
-│ ├───image
-│ └───javascript
-├───IGP_Convert # Converts SQL into JSON for Blazor Wasm
-├───Model # Data models
-└───Services # Web services
-```
-
-## Running
-
-- Open `IGP/IGP.sln`.
-- Click the green RUN button in Visual Studio.
-- A local copy of the IGP Website should have launched on your machine.
-
-## Publishing
-
-Code committed to the `main` branch will automatically be deployed to [production](https://www.igpfanreference.com/).
-
-Code committed to the `develop` branch will automatically be deployed
-to [development](https://calm-mud-04916b210.1.azurestaticapps.net/).
-
-_This is handle via the files in `.github/workflow`. Look into
-these [GitHub Actions Documents](https://docs.github.com/en/actions) if curious about how this CI system works._
-
-## Troubleshooting
-
-Nothing that some good internet searches cannot resolved. But you can also contact the project maintainer
-on [Discord](https://discord.gg/uMq8bMGeeN).
\ No newline at end of file