@foreach (var doc in DocumentationService.DocumentationModels) {
if (selectedSection != "All" && doc.Section != selectedSection) {
continue;
}
@doc.Section
Last Updated on @doc.UpdatedDate.ToString("MM/dd/yyyy")
@doc.Name
@((MarkupString)Markdown.ToHtml(doc.Description))
}