{% comment %}
@param social_url {String}
URL to share
@param social_title {Object}
If sending data to a service, description or title to share
@param social_image {String|Boolean}
If sending data to a service, URL of image to share, or false for no image
{% endcomment %}
{% assign share_url = social_url | url_param_escape %}
{% assign share_title = social_title | url_param_escape %}
{% assign share_image = false %}
{% if social_image %}
{% assign share_image = social_image | url_param_escape %}
{% endif %}
{% comment %}
@param title {String}
Title for section
@param results {Object}
List of results
@param results_type {String}
Type of search result to display
@param results_count {Number}
How many search results for given type have been found
{% endcomment %}
{% capture sanitized_terms %}
{%
render 'search-sanitizer',
search_terms: search.terms
%}
{% endcapture %}
{% assign sanitized_terms = sanitized_terms | strip %}