BeeCMS is a template based on Blogger.com pre-2010

Blogger.com has revamped the template handling early 2010. Since then, the newly introduced Blogger.com Template Designer has a lot of features which allow blog owners to easily and radically alter the design of their website.

DO NOT USE THE BEECMS TEMPLATE if you do want to use the great features Blogger.com Template Designer!!!
  1. 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 BeeCMS