mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-22 20:13:50 +08:00

- Broke manage and metadata template parts into their own respective display templates for both content types - Simplified the display template for each to contain only the page title and zones (primary w/ manage and metadata partitions and the remainder) - Removed themed templates that were made redundant with this cleanup --HG-- branch : dev
6 lines
320 B
Plaintext
6 lines
320 B
Plaintext
<%@ Control Language="C#" Inherits="Orchard.Mvc.ViewUserControl<ContentItemViewModel<BlogPost>>" %>
|
|
<%@ Import Namespace="Orchard.Mvc.ViewModels"%>
|
|
<%@ Import Namespace="Orchard.Blogs.Models"%>
|
|
<h1><%=Html.TitleForPage(Model.Item.Title)%></h1>
|
|
<% Html.Zone("primary", ":manage :metadata");
|
|
Html.ZonesAny(); %> |