mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
- Some refinement of the blog create/edit pages --HG-- extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4042239
12 lines
556 B
Plaintext
12 lines
556 B
Plaintext
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<Orchard.Blogs.ViewModels.CreateBlogViewModel>" ValidateRequest="false" %>
|
|
<%@ Import Namespace="Orchard.Blogs.Extensions"%>
|
|
<%@ Import Namespace="Orchard.Security" %>
|
|
<%@ Import Namespace="Orchard.Mvc.Html" %>
|
|
<% Html.Include("Head"); %>
|
|
<h2>Create New Blog</h2>
|
|
<p><a href="<%=Url.Blogs() %>">Manage Blogs</a> > Create Blog</p>
|
|
<% using (Html.BeginForm()) { %>
|
|
<%=Html.ValidationSummary() %>
|
|
<%=Html.EditorForModel() %>
|
|
<% } %>
|
|
<% Html.Include("Foot"); %> |