mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-22 20:13:50 +08:00
Added archives UI to show up on blog and blog post pages in the secondary zone. The current archives data shown is hardcoded and temporary.
--HG-- extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4045424
This commit is contained in:
@@ -6,13 +6,18 @@ Model.Zones.AddRenderPartial("header:after", "user", Model);
|
||||
Model.Zones.AddRenderPartial("menu", "menu", Model);
|
||||
Model.Zones.AddRenderPartial("content:before", "messages", Model.Messages);
|
||||
%>
|
||||
<div class="page">
|
||||
<div id="page">
|
||||
<div id="header"><%
|
||||
Html.Zone("header");
|
||||
Html.Zone("menu"); %>
|
||||
</div>
|
||||
<div id="main"><%
|
||||
Html.ZoneBody("content"); %>
|
||||
<div id="main">
|
||||
<div id=”content”><%
|
||||
Html.ZoneBody("primary");
|
||||
%></div>
|
||||
<div id=”sidebar”><%
|
||||
Html.Zone("secondary");
|
||||
%></div>
|
||||
<div id="footer"><%
|
||||
Html.Zone("footer");
|
||||
%></div>
|
||||
|
Reference in New Issue
Block a user