2010-01-07 00:12:56 +00:00
|
|
|
<%@ Control Language="C#" Inherits="Orchard.Mvc.ViewUserControl<ContentItemViewModel<Blog>>" %>
|
2010-01-05 10:54:12 +00:00
|
|
|
<%@ Import Namespace="Orchard.Mvc.ViewModels"%>
|
2009-12-21 08:24:39 +00:00
|
|
|
<%@ Import Namespace="Orchard.Blogs.Extensions"%>
|
|
|
|
<%@ Import Namespace="Orchard.Blogs.Models"%>
|
2010-01-07 00:12:56 +00:00
|
|
|
<h2><%=Html.Link(Html.Encode(Model.Item.Name), Url.Blog(Model.Item.Slug)) %></h2>
|
2010-06-08 22:44:30 -07:00
|
|
|
<% if (!string.IsNullOrEmpty(Model.Item.Description)) { %><p><%: Model.Item.Description %></p><% } %>
|
2010-06-08 23:42:20 -07:00
|
|
|
<div class="blog metadata"><%: T("{0} post{1}", Model.Item.PostCount, Model.Item.PostCount == 1 ? "" : "s")%> | <%Html.Zone("meta");%></div>
|