@using Orchard.Blogs.Extensions;
@using Orchard.Core.Contents.ViewModels;
@using Orchard.Utility.Extensions;
@Html.TitleForPage(T("Manage Blogs").ToString())
@if (Model.ContentItems.Items.Count > 0) {
using(Html.BeginFormAntiForgeryPost(Url.Action("List", "Admin", new { area = "Contents", id = "" }))) {
}
} else {
@T("There are no blogs for you to see. Want to
add one?", Url.BlogCreate())
}