2009-11-23 17:34:46 +00:00
|
|
|
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<Orchard.Blogs.ViewModels.CreateBlogViewModel>" %>
|
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-23 17:34:46 +00:00
|
|
|
<div class="yui-u">
|
|
|
|
|
<h2 class="separator">
|
2009-11-23 18:20:54 +00:00
|
|
|
Create New Blog</h2>
|
|
|
|
|
<p class="bottomSpacer">
|
|
|
|
|
<a href="<%=Url.Blogs() %>">Manage Blogs</a> > Create
|
|
|
|
|
</p>
|
2009-11-23 17:34:46 +00:00
|
|
|
</div>
|
|
|
|
|
<div class="yui-u">
|
|
|
|
|
<%using (Html.BeginForm()) { %>
|
|
|
|
|
<ol>
|
|
|
|
|
<%= Html.ValidationSummary() %>
|
|
|
|
|
<%= Html.EditorForModel() %>
|
|
|
|
|
<li class="clearLayout">
|
|
|
|
|
<input class="button" type="submit" value="Create" />
|
2009-11-23 18:20:54 +00:00
|
|
|
<a href="<%=Url.Blogs() %>" class="button">Cancel</a>
|
|
|
|
|
</li>
|
2009-11-23 17:34:46 +00:00
|
|
|
</ol>
|
|
|
|
|
<%}/*EndForm*/%>
|
|
|
|
|
</div>
|
2009-11-23 18:20:54 +00:00
|
|
|
<% Html.Include("Foot"); %>
|