Repository
Repositories help organize and structure different searching scenarios.
Available loops
FacetGroups
The FacetGroups loop lets you display information about the specific facent created within a repository.
RAZOR
@foreach (LoopItem item in GetLoop("FacetGroups")){
<p>@item.GetValue("TagName")</p>
}
Query.Parameters
The Query.Parameters loop lets you display information about the specific query parameter.
RAZOR
@foreach (LoopItem item in GetLoop("Query.Parameters")){
<p>@item.GetValue("TagName")</p>
}