Showing posts with label documentation. Show all posts
Showing posts with label documentation. Show all posts

Monday, January 11, 2010

Removed the post summaries

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 != &quot;item&quot;'>

    <div expr:id='&quot;summary&quot; + data:post.id'>
       <data:post.body/>
    </div>
<script type='text/javascript'>createSummaryAndThumb(&quot;summary<data:post.id/>&quot;);
</script> 
<span class='rmlink' style='float:right; margin-right: 1px;'> Continue reading &raquo;</span>

      <div style='clear: both;'/> <!-- clear for photos floats -->

</b:if>


<b:if cond='data:blog.pageType == &quot;item&quot;'>
    <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 BloggerCMS