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
|
|
|
<%-- todo: (heskew) selectively display to those who have access --%>
|
2009-12-23 17:38:00 +00:00
|
|
|
<h1><%=Html.TitleForPage(Model.Item.Name) %></h1>
|
2010-01-13 20:38:15 +00:00
|
|
|
<div class="manage"><a href="<%=Url.BlogEdit(Model.Item.Slug) %>" class="ibutton edit"><%=_Encoded("edit") %></a></div>
|
2010-01-07 00:12:56 +00:00
|
|
|
<p><%=Html.Encode(Model.Item.Description) %></p>
|
|
|
|
<% Html.Zone("primary");
|
|
|
|
Html.ZonesAny(); %>
|