Files
wp-bootstrap/views/pages/search.html.twig
magdev eb5ac6f7ad
All checks were successful
Create Release Package / PHP Lint (push) Successful in 52s
Create Release Package / Build Release (push) Successful in 1m21s
v0.3.0 - Polish: accessibility, security, performance, RTL, French translation
Co-Authored-By: Claude <noreply@anthropic.com>
2026-02-08 16:27:13 +01:00

16 lines
369 B
Twig

{% extends 'base.html.twig' %}
{% block content %}
<div class="container">
<h1 class="mb-4">
{{ __('Search results for: %s')|format('<em>' ~ search_query|e('html') ~ '</em>')|raw }}
</h1>
{% include 'partials/search-form.html.twig' %}
<div class="mt-4">
{% include 'components/post-loop.html.twig' %}
</div>
</div>
{% endblock %}