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-01-27 23:10:27 +00:00
|
|
|
<% if (!string.IsNullOrEmpty(Model.Item.Description)) { %><p><%=Html.Encode(Model.Item.Description) %></p><% } %>
|
|
|
|
<div class="blog metadata"><%=_Encoded("{0} post{1}", Model.Item.PostCount, Model.Item.PostCount == 1 ? "" : "s")%> | <%Html.Zone("meta");%></div>
|