Post Mon Jun 20, 2011 9:11 am

Need help with "Clean Elegance" template

Hi all,

I'm trying to finish customizing my blog, and while I've found a template I absolutely love, there is one thing that bothers me about it that I can't figure out how to fix. If there are multiple posts in one day, only the last post of the day shows the title/date.

  Code:
<!-- posts -->

<div class='blog-posts hfeed'>

   <b:include data='top' name='status-message'/>

   <data:defaultAdStart/>
   <b:loop values='data:posts' var='post'>
   <b:if cond='data:post.isDateStart'>
      <b:if cond='data:post.isFirstPost == &quot;false&quot;'>
      &lt;/div&gt;&lt;/div&gt;
      </b:if>
   </b:if>
   <b:if cond='data:post.isDateStart'>
      &lt;div class=&quot;date-outer&quot;&gt;
   </b:if>
   <div id='topimg'/>
   <div id='backimg'>
   <div class='date-header'>
   <data:post.dateHeader/>
   </div> </div>
   <b:if cond='data:post.isDateStart'>
      &lt;div class=&quot;date-posts&quot;&gt;
   </b:if>
   
   <div class='post-outer'>
   <b:include data='post' name='post'/>
   <b:if cond='data:blog.pageType == &quot;static_page&quot;'>
      <b:include data='post' name='comments'/>
   </b:if>
   <div id='bottomimg'/>
   <b:if cond='data:blog.pageType == &quot;item&quot;'>
   
   <div id='topimg'/>
   <div id='backimg'>
   <b:include data='post' name='comments'/>
   </div><div id='bottomimg'/>
   </b:if>
   </div>
   <b:if cond='data:post.includeAd'>
      <b:if cond='data:post.isFirstPost'>
      <data:defaultAdEnd/>
      <b:else/>
      <data:adEnd/>
      </b:if>
      <div class='inline-ad'>
      <data:adCode/>
      </div>
      <data:adStart/>
   </b:if>
   <b:if cond='data:post.trackLatency'>
      <data:post.latencyJs/>
   </b:if>
   
   </b:loop>
   <b:if cond='data:numPosts != 0'>
   &lt;/div&gt;&lt;/div&gt;
   </b:if>
   <data:adEnd/>
   
</div>




<!-- navigation -->


I realize the solution is somewhere in the b:if conditionals, but I really don't understand how the author closed them at the end, so whenever I try to edit it, it says I either don't have enough /div tags, or that one of my classes is open. I'd really appreciate some help with fixing this <3 Thank you!!