<%inherit file="/template.html" /> <%namespace name="components" file="/components.html"/> <%def name="title()">${_(u"Categories")|n} <%def name="breadcrumbs()"> ${h.category.breadcrumbs(None)|n} <%block name="headline"> %if c.heading_title and c.heading_text:
%endif %if c.heading_title:

${_(c.heading_title)|n}

%else:

${_(u"Categories")} %if can.badge.manage_instance(): ${_(u"Edit")} %endif

%endif %if c.heading_text:
${_(c.heading_text)|n}
%else:
%endif %if c.heading_title and c.heading_text:
%endif
<% counter = 0 %> %for category in c.categories: %if counter % 3 == 0:
%endif

${category.title}

${category.description}

${_('View and discuss')}
<% counter += 1 %> %if counter % 3 == 0:
%endif %endfor %if counter % 3 != 0: %for i in range(counter % 3, 3): %endfor
%endif