Migrating Orchard.Blogs

--HG--
branch : dev
This commit is contained in:
Nathan Heskew
2010-09-17 01:00:24 -07:00
parent 296d12b5a9
commit f6d4d05c22
105 changed files with 508 additions and 1024 deletions

View File

@@ -0,0 +1,8 @@
@using Orchard.Blogs.Extensions
<h1>@Html.TitleForPage(T("Manage Blogs").ToString())</h1>
@if (Model.ContentItems.Items.Count > 0) {
<div class="actions"><a class="add button primaryAction" href="@Url.BlogCreate()">@T("New Blog")</a></div>
@Display(Model.ContentItems)
} else {
<div class="info message">@T("There are no blogs for you to see. Want to <a href=\"{0}\">add one</a>?", Url.BlogCreate())</div>
}