<%doc> Use for index of posts. The include_content page arg is used to determine whether to include the post content in the listing. <%page args="include_content=True"/> <%namespace name="comp" file="/_components.tmpl" />
% for post in posts:
##
## ## TODO: figure out how to display the category ##
% for tag in post.tags: ${tag} % endfor
##
## ${post.reading_time} ##

${post.title()}

${post.description()}

% if include_content and not exclude_index_content:
${post.text(teaser_only=index_teasers)}
% endif
% endfor