diff --git a/OliverBooth/Pages/Projects/Index.cshtml b/OliverBooth/Pages/Projects/Index.cshtml index 3e5b41a..90468e5 100644 --- a/OliverBooth/Pages/Projects/Index.cshtml +++ b/OliverBooth/Pages/Projects/Index.cshtml @@ -7,6 +7,7 @@ IEnumerable projects = ProjectService.GetProjects(ProjectStatus.Ongoing).OrderBy(p => p.Rank) .Concat(ProjectService.GetProjects(ProjectStatus.Past).OrderBy(p => p.Rank)) + .Concat(ProjectService.GetProjects(ProjectStatus.Retired).OrderBy(p => p.Rank)) .Concat(ProjectService.GetProjects(ProjectStatus.Hiatus).OrderBy(p => p.Rank)); }