Add search page

This commit is contained in:
2020-07-16 14:52:49 -04:00
parent c8e9a65f70
commit ef7e2c5ae6
8 changed files with 72 additions and 13 deletions
@@ -4,7 +4,7 @@
@using Umbraco.Web.Models
@using Umbraco.Web.Controllers
@{
var loginModel = new LoginModel { RedirectUrl = "/leaf-data/manage-queue/" };
var loginModel = new LoginModel { RedirectUrl = "/leaf-data/search/" };
}
<div class="container mt-3">
+1 -1
View File
@@ -1,5 +1,5 @@
@inherits Umbraco.Web.Macros.PartialViewMacroPage
@{
Html.RenderAction("Index", "Results");
Html.RenderAction("Recent", "Results");
}
+5
View File
@@ -0,0 +1,5 @@
@inherits Umbraco.Web.Macros.PartialViewMacroPage
@{
Html.RenderAction("Search", "Results");
}