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