[% PROCESS 'html-incblocks.txt' %]
[% global.SearchString = variables.SEARCH; clearVar('SEARCH') %]
[% INCLUDE htmlstart
title='Search results: ' _ global.SearchString
contentClass="SingleColumnContent" %]
Search results: [% global.SearchString %]
[% INCLUDE treename %]
[% results = searchResults(global.SearchString);
counter = 0;
FOREACH entry IN results;
counter = counter + 1;
IF counter % 2 == 0;
evenRow = 1;
ELSE;
evenRow = 0;
END;
%]
[% entry.path %]
[% FOREACH param IN entry.match.keys %]
[% param _ ': ' _ xmlnorm(entry.match.$param) %]
[% END %]
[% END %]
[% global.contentFinished = 1 %]
[% INCLUDE htmlend %]