mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00

--HG-- extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4043023
13 lines
661 B
Plaintext
13 lines
661 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("AdminHead"); %>
|
|
<h2>Create a Blog</h2>
|
|
<p><a href="<%=Url.BlogsForAdmin() %>">Manage Blogs</a> > Create a Blog</p>
|
|
<% using (Html.BeginForm()) { %>
|
|
<%=Html.ValidationSummary() %>
|
|
<%=Html.EditorForModel() %>
|
|
<fieldset><input class="button" type="submit" value="Create" /></fieldset>
|
|
<% } %>
|
|
<% Html.Include("AdminFoot"); %> |