Try your search with a different keyword or use * as a wildcard.
@model ProfilePostsModel
@if (Model.Posts.Count > 0)
{
@foreach (var item in Model.Posts)
{
@Html.RouteLink(item.ForumTopicTitle, "TopicSlug", new { id = item.ForumTopicId, slug = item.ForumTopicSlug })
@Html.Raw(item.ForumPostText)
@item.Posted
}
}
else
{
@T("Profile.LatestPosts.NoPosts")
}
@{
var pager = await Html.PagerAsync(Model.PagerModel);
}
@if (!string.IsNullOrEmpty(await pager.RenderHtmlContentAsync()))
{
@pager
}