<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage" %> <%@ Import Namespace="Orchard.CmsPages.Services.Templates"%> <%@ Import Namespace="Orchard.Mvc.Html" %> <% Html.Include("Header"); %>

Change Template

Select your layout from one of the templates below.

<%using (Html.BeginForm()) { %> <%= Html.ValidationSummary() %>
    <% foreach (TemplateDescriptor template in Model.Templates) {%>
    • <%=Html.Encode(template.DisplayName)%>

    • <%=Html.Encode(template.DisplayName)%>
    • <%=Html.Encode(template.Description)%>

  1. <% } %>
  2. <%=Html.ActionLink("Cancel", "Edit", new { Id = ViewContext.RouteData.GetRequiredString("id") }, new { @class = "linkButton" })%>
<%}/*EndForm*/%>
<% Html.Include("Footer"); %>