I have entries from a weblog paginated, 5 per page. I have a divider image in my template that goes in between each blog entry. Link to page The problem is, the divider shows up on the last post of the page, creating an unnecessary divider. Is there anyway with an if conditional or some other method to NOT show the divider if the entry is the last entry on the page.
{exp:weblog:entries weblog="staff" sort="asc" limit="5" paginate="bottom"}
<div class="staff-member">
<h3 class="clear"><a href="http://{path=about/staff/{url_title}}">{title}</a> - {position}</h3>
{staff-photo} {staff-member-bio}
<!-- blog entry divider -->
<div class="hr"><hr ></div>
<!-- close staff-member -->
</div>
{paginate} {pagination_links}{/paginate}
{/exp:weblog:entries}