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-06-09 23:06:36 -07:00
|
|
|
<h2><%: Html.Link(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-09 15:39:35 -07:00
|
|
|
<div class="blog metadata"><%: T.Plural("1 post", "{0} posts", Model.Item.PostCount)%> | <%Html.Zone("meta");%></div>
|