@model HelpCategoryArticlesViewModel @{ ViewData["Title"] = $"Help - {Model.CategoryName}"; }

Help category

@Model.CategoryName

@Model.Articles.Count article@(Model.Articles.Count == 1 ? "" : "s")

Help Centre
@if (!Model.Articles.Any()) {

No help articles are available in this category yet.

} else {
@foreach (var article in Model.Articles) {

@article.Title

@article.QuickSummary

@if (article.Tags.Any()) {

Tags: @string.Join(", ", article.Tags)

}
}
}