Files
Orchard/src/Orchard.Web/Modules/Orchard.Blogs/Views/Parts/Blogs.BlogPost.List.cshtml
Nathan Heskew dc5cc339a7 Getting Blogs onto the new UI composotion model
--HG--
branch : dev
2010-10-14 11:15:22 -07:00

9 lines
195 B
Plaintext

@{
IEnumerable<object> blogPosts = Model.BlogPosts;
}
@Display(ContentItems)
@if (blogPosts == null || blogPosts.Count() < 1) {
<p>@T("There are no posts for this blog.")</p>
}
hi