More clean up for blogs and added blog list page on the front end and added a menu item.

--HG--
extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4043003
This commit is contained in:
ErikPorter
2009-12-03 01:37:45 +00:00
parent 4f34920dbb
commit 3a3c34bf90
20 changed files with 90 additions and 20 deletions

View File

@@ -0,0 +1,9 @@
using System.Collections.Generic;
using Orchard.Blogs.Models;
using Orchard.Mvc.ViewModels;
namespace Orchard.Blogs.ViewModels {
public class BlogsForAdminViewModel : AdminViewModel {
public IEnumerable<Blog> Blogs { get; set; }
}
}