Following our quest to debloggedize the BeeCMS template based we removed this blocj of code, which Amanda used to list the post summaries.
<b:if cond='data:blog.pageType != "item"'>
<div expr:id='"summary" + data:post.id'>
<data:post.body/>
</div>
<script type='text/javascript'>createSummaryAndThumb("summary<data:post.id/>");
</script>
<span class='rmlink' style='float:right; margin-right: 1px;'> Continue reading »</span>
<div style='clear: both;'/> <!-- clear for photos floats -->
</b:if>
<b:if cond='data:blog.pageType == "item"'>
<div class='post-body entry-content'>
<data:post.body/>
<div style='clear: both;'/> <!-- clear for photos floats -->
</div>
</b:if>
We replaced it with the standard Blogger way to handle post lists. As we use the lists only to generate dynamic content for the labelled navigation menu items, we prefer the direct full version of the post:
<div class='post-body entry-content'>
<data:post.body/>
<div style='clear: both;'/> <!-- clear for photos floats -->
</div>
Posted via email from BeeCMS