Posts: 1
Joined: Mon Jun 20, 2011 9:07 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.
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!!
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 == "false"'>
</div></div>
</b:if>
</b:if>
<b:if cond='data:post.isDateStart'>
<div class="date-outer">
</b:if>
<div id='topimg'/>
<div id='backimg'>
<div class='date-header'>
<data:post.dateHeader/>
</div> </div>
<b:if cond='data:post.isDateStart'>
<div class="date-posts">
</b:if>
<div class='post-outer'>
<b:include data='post' name='post'/>
<b:if cond='data:blog.pageType == "static_page"'>
<b:include data='post' name='comments'/>
</b:if>
<div id='bottomimg'/>
<b:if cond='data:blog.pageType == "item"'>
<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'>
</div></div>
</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!!
