Here's the link for template tag 👇
This tag will return the searched list 👇
{% search_results search_entry_list %}
Here's the link for the frontend structure 👇
Front-end code
<body>
<h1> Search results {% if query %} for “. {{query}}”{% endif %}
</h1>
{% if search_results %}
{% search_results search_results %}
{% else %}
{% if query %}
<p><em>There are no results to display.</em></p>
<p><em>Try entering a less specific search term.</em></p>
{% else %}
<p><em>Please enter a query in the search form.</em></p>
{% endif %}
{% endif %}
</body>