urg, i know this isn’t a plugin assistance forum, but can anyone see what I’m doing wrong here:
{exp:reeposition}
<ul>
{exp:weblog:entries weblog="{template_group}" disable="{disable}" limit="1" orderby="date" sort="asc"}
<li>
<div class="journal_list_comments"><a href="#">32 Comments</a></div>
<div class="journal_list_text"><h3><a href="/{template_group}/detail/{url_title}">{title}</a></h3>
{exp:char_limit total="100"}{exp:html_strip}{journal_body}{/exp:html_strip}{/exp:char_limit}
</div>
</li>
{reeposition:item}
{paginate}
<div class="article_pagination">
<span>Page {current_page} of {total_pages} pages</span>{pagination_links}
</div>
{/paginate}
{/reeposition:item}
{/exp:weblog:entries}
</ul>
{reeposition:put_item}
{/exp:reeposition}
The result is keeping the pagination inside the <ul></ul> :(
nm, i figured it out. seems i just had some things out of order. See below for the corrected version:
{exp:reeposition}
<ul>
{exp:weblog:entries weblog="{template_group}" disable="{disable}" limit="1" orderby="date" sort="asc"}
<li>entry_loop</li>
{paginate}
{reeposition:item}
<span>Page {current_page} of {total_pages} pages</span>{pagination_links}
{/reeposition:item}
{/paginate}
{/exp:weblog:entries}
</ul>
<div class="article_pagination">
{reeposition:put_item}
</div>
{/exp:reeposition}
Packet Tide owns and develops ExpressionEngine. © Packet Tide, All Rights Reserved.