@GetValue("DwSearchResultList")
@string.Format(Translate("NoSearchResults", "Sorry, your search for '{0}' gave no results."), searchedTerm)
@*https://doc.dynamicweb.com/documentation-9/indexing/other/suggestions*@
@{
string firstSuggestion = GetString("QueryResult.SpellCheck");
}
@Translate("DidYouMean", "Did you mean"): @firstSuggestion?
@if (!string.IsNullOrWhiteSpace(firstSuggestion))
{
@Translate("OtherPossibleOptionsInclude", "Other possible options include"):
foreach (var suggestion in GetLoop("SpellCheckerSuggestions"))
{
var suggestionTerm = suggestion.GetString("Suggestion");
@suggestionTerm
}
}