# Add search to your site Using the Wagtail `start` command to start your project gives you a built-in search app. This built-in search app provides a simple search functionality for your site. However, you can customize your search template to suit your portfolio site. To customize your search template, go to your `search/templates/search.html` file and modify it as follows: ```html+django {% extends "base.html" %} {% load static wagtailcore_tags %} {% block body_class %}template-searchresults{% endblock %} {% block title %}Search{% endblock %} {% block content %}

Search

{% if search_results %} {# Add this paragraph to display the details of results found: #}

You searched{% if search_query %} for “{{ search_query }}”{% endif %}, {{ search_results.paginator.count }} result{{ search_results.paginator.count|pluralize }} found.

{# Replace the