The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
<h1>[%l('Search Results')%]</h1>

[% IF search_terms.raw %]
<h2>[%l('Searching for')%] <em>[% search_terms.raw || '[nothing]' %]</em> in <em>[% search_forum.name || 'all forums' %]</em></h2>
[% END %]

[% IF search_results %]
    <table class="search_results">
        <tbody>
            [% dummy_value = search_results.reset %]
            [%- WHILE (post = search_results.next) %]
            [% thread = post.thread %]
            [% PROCESS shared/postinfo_table_row show_search_data=post %]
            [% END %]
        </tbody>
    </table>
[% ELSE %]
[%l('No results found matching specified terms')%].
[% END %]