Moving some things around for optimal templating (just for blogs for now). Controller convention is needed for admin actions still, but the current structure is closer to what it should be in the end.

--HG--
extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4044346
This commit is contained in:
ErikPorter
2009-12-20 08:57:20 +00:00
parent b86457f897
commit 3312bdd55f
25 changed files with 141 additions and 112 deletions

View File

@@ -4,6 +4,6 @@
<li><%= Html.ActionLink("Home", "Index", "Home", new {Area = ""}, new {})%></li>
<li><%= Html.ActionLink("About", "About", "Home", new {Area = ""}, new {})%></li>
<li><%= Html.ActionLink("Blogs", "List", "Blog", new {Area = "Orchard.Blogs"}, new {})%></li>
<li><%= Html.ActionLink("Admin", "ListForAdmin", new {Area = "Orchard.Blogs", Controller = "Blog"})%></li>
<li><%= Html.ActionLink("Admin", "List", new {Area = "Orchard.Blogs", Controller = "BlogAdmin"})%></li>
</ul>
</div>