If `News` is a model with a few content types (created using
News.create_content_type(RichTextContent) for example), all you have
to do in base.html would be:
{% feincms_render_region newsentry "the_region_containing_content" request %}
"the_region_containing_content" would be a region registered with
News.register_regions(), for example:
News.register_regions(('main', 'Main content area'))
{% for newsentry in objects %}{% feincms_render_region newsentry
"main" request %}{% endfor %}
This should work right away, but you'll need lots of DB queries to
display the page. In elephantblog/utils.py you'd find an important
part of doing this better (by prefetching rich text contents, images
and categories for all blog entries at once)
https://github.com/feincms/feincms-elephantblog
Matthias