Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 478 Bytes

Search.md

File metadata and controls

26 lines (17 loc) · 478 Bytes

@var Title = "Search results for " + Model.Query

@if (Model.Results.Count == 0) {

Your search did not match any documents.

Suggestions:

  • Make sure all words are spelled correctly.
  • Try different keywords.
  • Try more general keywords.
  • Try fewer keywords. } else {

Showing Results 1 - @Model.Results.Count

^

@foreach page in Model.Results {

@page.Category > @page.Name

@page.Content }

^

}