{% 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 %}
{% if results_paginated.object_list %} {% if page|is_not_page %} {% include page.search_template %} {% endif %} {% with page=page.specific %} {% if page.search_template %} {% include page.search_template %} {% else %} {% include "cjkcms/pages/search_result.html" %} {% endif %} {% endwith %} {% endif %}
{% endfor %} {% include "cjkcms/includes/pagination.html" with items=results_paginated %} {% else %} {% if form.s.value %}

{% trans 'No results found.' %}

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