Try your search with a different keyword or use * as a wildcard.
@model ProfilePostsModel
@if (Model.Posts.Count > 0)
{
<div class="latest-posts">
@foreach (var item in Model.Posts)
{
<div class="topic">
<div class="topic-title">
<label>@T("Profile.Topic"):</label>
@Html.RouteLink(item.ForumTopicTitle, NopRouteNames.Standard.TOPIC_SLUG, new { id = item.ForumTopicId, slug = item.ForumTopicSlug })
</div>
<div class="topic-body">
<p>@Html.Raw(item.ForumPostText)</p>
</div>
<div class="topic-data">
<label>@T("Profile.PostedOn"):</label>
<span>@item.Posted</span>
</div>
</div>
}
</div>
}
else
{
<div class="no-data">
@T("Profile.LatestPosts.NoPosts")
</div>
}
@{
var pager = await Html.PagerAsync(Model.PagerModel);
}
@if (!string.IsNullOrEmpty(await pager.RenderHtmlContentAsync()))
{
<div class="pager">
@pager
</div>
}