{% extends "cjkcms/pages/web_page.html" %} {% load django_bootstrap5 i18n cjkcms_tags %} {% block title %} {% if not form.s.value %} {% trans 'Search' %} {% else %} {% trans 'Search for' %} “{{form.s.value}}” {%endif%} {% endblock %} {% block content %}
{% if not form.s.value %}

{% trans 'Search' %}

{% else %}

{% trans 'Search for' %} “{{form.s.value}}”

{%endif%}
{# if not settings.cjkcms.LayoutSettings.navbar_search #}
{% bootstrap_form form size='lg' layout='inline' %}
{# endif #} {% if pagetypes %} {% query_update request.GET 'p' None as qs_nop %}
{% endif %}
{% if results_paginated.object_list %} {% for page in results_paginated %}
{% with page=page.specific %} {% include page.search_template %} {% endwith %}
{% endfor %} {% include "cjkcms/includes/pagination.html" with items=results_paginated %} {% else %} {% if form.s.value %}

{% trans 'No results found.' %}

{% endif %} {% endif %}
{% endblock %}