mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-12-03 12:03:51 +08:00
--HG-- extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4041367
20 lines
1.0 KiB
Plaintext
20 lines
1.0 KiB
Plaintext
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<System.Collections.Generic.IEnumerable<Orchard.CmsPages.Models.Page>>" %>
|
|
<%@ Import Namespace="Orchard.Mvc.Html" %>
|
|
<% Html.Include("Header"); %>
|
|
<div class="yui-g">
|
|
<h2>
|
|
Export</h2>
|
|
<p class="bottomSpacer">
|
|
Possible text about setting up a page goes here. Lorem ipsum dolor sit amet, consectetur
|
|
adipiscing elit. Nulla erat turpis, blandit eget feugiat nec, tempus vel quam. Mauris
|
|
et neque eget justo suscipit blandit.</p>
|
|
<ol><%foreach (var page in Model) { %><li>
|
|
Page Id <%=page.Id %>
|
|
<ol><%foreach (var revision in page.Revisions) { %>
|
|
<li>Revision <%=revision.Number %> <b><%=revision.Title %></b> ~/<%=revision.Slug %>
|
|
<br />Modified:<%=revision.ModifiedDate %>
|
|
<br />Published:<%=revision.PublishedDate %></li>
|
|
<%} %></ol>
|
|
</li><%} %></ol>
|
|
</div>
|
|
<% Html.Include("Footer"); %> |