2009-11-19 23:20:51 +00:00
|
|
|
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<PageShowViewModel>" %>
|
|
|
|
|
|
2009-11-23 20:21:02 +00:00
|
|
|
<%@ Import Namespace="Orchard.Sandbox.ViewModels" %>
|
2009-11-19 23:20:51 +00:00
|
|
|
<%@ Import Namespace="Orchard.Mvc.Html" %>
|
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
|
<head>
|
|
|
|
|
<title>TwoColumns</title>
|
|
|
|
|
<link href="<%=ResolveUrl("~/Content/Site2.css") %>" rel="stylesheet" type="text/css" />
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div id="header">
|
|
|
|
|
<div id="innerheader">
|
|
|
|
|
<% Html.Include("header"); %>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="page">
|
|
|
|
|
<div id="sideBar">
|
|
|
|
|
<% Html.Include("Navigation"); %>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="main">
|
2009-11-26 03:00:12 +00:00
|
|
|
<% Html.RenderPartial("Messages", Model.Messages); %>
|
2009-12-01 05:30:10 +00:00
|
|
|
<h1><%=Html.Encode(Model.Page.Record.Name) %></h1>
|
2009-12-02 06:16:22 +00:00
|
|
|
<%foreach (var display in Model.ItemView.Displays) { %>
|
2009-11-19 23:28:19 +00:00
|
|
|
<%=Html.DisplayFor(m=>display.Model, display.TemplateName, display.Prefix) %>
|
|
|
|
|
<%} %>
|
2009-11-19 23:33:07 +00:00
|
|
|
<p>
|
|
|
|
|
<%=Html.ActionLink("Edit this page", "edit", new{Model.Page.ContentItem.Id}, new{}) %>, <%=Html.ActionLink("Return to list", "index") %></p>
|
2009-11-19 23:20:51 +00:00
|
|
|
</div>
|
|
|
|
|
<div id="footer">
|
|
|
|
|
<% Html.Include("footer"); %>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|