---
title: "Result List"
manual: "Apache Solr for TYPO3"
version: "12.1"
source: "Frontend/Results.rst"
modified: "2026-09-16T15:14:12+00:00"
---

# Result List

The most important part of a search are the results. The rendering of the results is done in the "Results.html" template
(Located in Templates/Search/Results.html)

The following part of the default template iterates over the results and renders every document with the Document.html partial (Partials/Frontend/Result/Document.html)

```xml
<ol start="{pagination.displayRangeStart}" class="results-list">
	<f:for each="{resultSet.searchResults}" as="document">
		<f:render partial="Result/Document" section="Document"
		 arguments="{resultSet:resultSet, document:document}" />
	</f:for>
</ol>
```

This structure allows you to use e.g. the fluid if ViewHelper to render a result with a different partial, based on a field value.
But as you see in the template above, by default the partial "Result/Document" is used.

The "document" partial is getting the document object. In our case this is an instance of "ApacheSolrForTypo3SolrfluidDomainSearchResultSetSearchResult"
the api of this object allows to get the Solr field content with "Document->getFieldName()" that can be used as "document.fieldName" in fluid.
