mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 03:25:23 +08:00

This lets unique display actions, like Blog/Item, do their own thing. In the case of the blog, its posts are once again showing up on the home page. The routing problem (where the home page'd item still is seen as having its own path) still needs to be fixed so the item on the home page can't be hit at different URLs (and so something like paging works on the home page) work item: 16720 --HG-- branch : dev
4 lines
171 B
Plaintext
4 lines
171 B
Plaintext
@{
|
|
RouteValueDictionary routeValues = Model.RouteValues;
|
|
Html.RenderAction(routeValues["action"] as string, routeValues["controller"] as string, routeValues);
|
|
} |