Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

A block where the search results of the passed search query are available. Expects one argument, which is the search query.

The following variables are available within the block:

  • search_results: An array of Posts that match the search query.

{% search_results "<search query>" %}

  {% for post in search_results %}
    <h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
    <hr>
  {% endfor %}

{% endsearch_results %}

Use request.query_object to use a search term passed as a URL parameter.

The block accepts the following extra optional parameters:

  • size, e.g. size: 50. The maximum search results, so the request load time can be limited, even when there is a very large amount of search results. Default: 100.

  • No labels