Files
LeafWeb/WebCms/Views/Results/Index.cshtml
T

16 lines
493 B
Plaintext

@using LeafWeb.Core.Entities
@using LeafWeb.WebCms.Controllers
@using LeafWeb.WebCms.Utility
@model SearchLeafInputViewModel
<div class="row align-items-end">
<div class="col-12 col-md-9 offset-md-3">
@Html.Partial("_LeafDataQuery", Model.Q,
new ViewDataDictionary{
{"actionName", "Search"},
{"controllerName", "Results"},
{"htmlFormAction", "/services/search/"},
{"expand", true}})
</div>
</div>