On Jul 20, 8:15 pm, Ryan McGuire <
tellar...@gmail.com> wrote:
> I admit this is bit hacky, but here's a way you could do what you want
> without modifying the internals:
>
> In your chronological.py:
>
> replace:
> <%include file="post.mako" args="post=post" />
>
> with:
> % if bf.template_context.render_path.startswith("/blog/category"):
> <%include file="post_excerpt.mako" args="post=post" />
> % else:
> <%include file="post.mako" args="post=post" />
> % endif
>
> That is just including a different post template depending on the URL being
> rendered, in this case the category pages.
>