
Reaction::Manual::Cookbook - Miscellaneous recipes

These should include some hopefully useful tips and tricks!
These would typically go in your /root directory along with your other templates.
Filename: listview
[%
PROCESS base/listview;
row_block = 'listview_row_fancy';
BLOCK listview_row_fancy;
IF loop.count % 2 == 1;
attrs.class = 'dark';
ELSE;
attrs.class = 'light';
END;
INCLUDE listview_row;
END;
%]
Filename: form_base
[%
PROCESS base/form_base;
main_block = 'form_base_control_fancy';
BLOCK form_base_control_fancy;
action_class = self.action.meta.name.split('::').pop;
'<h3>'; action_class.split('(?=[A-Z])').join(' '); '</h3>';
INCLUDE form_base_control;
END;
%]
Things
Stuff

See Reaction::Class for authors.

See Reaction::Class for the license.