2009-11-25 01:34:23 +00:00
|
|
|
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<CreateBlogPostViewModel>" %>
|
|
|
|
|
<%@ Import Namespace="Orchard.Blogs.ViewModels"%>
|
|
|
|
|
<%@ Import Namespace="Orchard.Blogs.Extensions"%>
|
|
|
|
|
<%@ Import Namespace="Orchard.Security" %>
|
|
|
|
|
<%@ Import Namespace="Orchard.Mvc.Html" %>
|
|
|
|
|
<% Html.Include("Head"); %>
|
2009-11-26 00:38:40 +00:00
|
|
|
<h2>Create a New Blog Post</h2>
|
|
|
|
|
<p><a href="<%=Url.Blogs() %>">Manage Blogs</a> > <a href="<%=Url.BlogEdit(Model.Blog.Slug) %>"><%=Html.Encode(Model.Blog.Name) %></a> > Create Blog Post</p>
|
|
|
|
|
<%using (Html.BeginForm()) { %>
|
|
|
|
|
<%= Html.ValidationSummary() %>
|
|
|
|
|
<%= Html.EditorForModel() %>
|
|
|
|
|
<% } %>
|
2009-11-25 01:34:23 +00:00
|
|
|
<% Html.Include("Foot"); %>
|