2009-11-25 01:34:23 +00:00
|
|
|
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<Orchard.Blogs.ViewModels.CreateBlogViewModel>" ValidateRequest="false" %>
|
2009-11-23 18:20:54 +00:00
|
|
|
<%@ Import Namespace="Orchard.Blogs.Extensions"%>
|
2009-11-23 17:34:46 +00:00
|
|
|
<%@ Import Namespace="Orchard.Security" %>
|
|
|
|
|
<%@ Import Namespace="Orchard.Mvc.Html" %>
|
2009-11-23 18:20:54 +00:00
|
|
|
<% Html.Include("Head"); %>
|
2009-11-24 18:30:32 +00:00
|
|
|
<h2>Create New Blog</h2>
|
2009-11-25 01:34:23 +00:00
|
|
|
<p><a href="<%=Url.Blogs() %>">Manage Blogs</a> > Create Blog</p>
|
2009-11-24 18:30:32 +00:00
|
|
|
<%using (Html.BeginForm()) { %>
|
|
|
|
|
<%= Html.ValidationSummary() %>
|
|
|
|
|
<%= Html.EditorForModel() %>
|
|
|
|
|
<%}/*EndForm*/%>
|
2009-11-23 18:20:54 +00:00
|
|
|
<% Html.Include("Foot"); %>
|