Files
Orchard/src/Orchard.Web/Packages/Orchard.Blogs/Views/Blog/Create.aspx
skewed 59504cea49 - TinyMCE only hooked up to textareas w/ a class of "html"
- Some refinement of the blog create/edit pages

--HG--
extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4042239
2009-11-25 22:10:10 +00:00

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"); %>