mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-24 13:33:34 +08:00
11 lines
287 B
C#
11 lines
287 B
C#
![]() |
using System.Web.Mvc;
|
|||
|
using Orchard.Themes;
|
|||
|
|
|||
|
namespace Orchard.Core.Containers.Controllers {
|
|||
|
public class ItemController: Controller {
|
|||
|
[Themed]
|
|||
|
public ActionResult Display(string path, int? page) {
|
|||
|
return View();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|