2010-01-07 00:12:56 +00:00
|
|
|
<%@ Control Language="C#" Inherits="Orchard.Mvc.ViewUserControl<ContentItemViewModel<Blog>>" %>
|
2010-03-02 11:11:22 -08:00
|
|
|
<%@ Import Namespace="Orchard.UI.Resources"%>
|
|
|
|
<%@ Import Namespace="Orchard.Blogs.Extensions"%>
|
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.Models"%>
|
2009-12-23 17:38:00 +00:00
|
|
|
<h1><%=Html.TitleForPage(Model.Item.Name) %></h1>
|
2010-03-02 11:11:22 -08:00
|
|
|
<% Html.RegisterLink(new LinkEntry { Rel = "wlwmanifest", Type = "application/wlwmanifest+xml", Href = Url.BlogLiveWriterManifest(Model.Item.Slug) });%>
|
2010-03-02 12:10:49 -08:00
|
|
|
<% Html.RegisterLink(new LinkEntry { Rel = "EditURI", Type = "application/rsd+xml", Title = "RSD", Href = Url.BlogRsd(Model.Item.Slug) });%>
|
2010-03-01 16:34:51 -08:00
|
|
|
<% Html.Zone("primary", ":manage :metadata");
|
2010-01-07 00:12:56 +00:00
|
|
|
Html.ZonesAny(); %>
|