I am new to EE and I am trying to list out a list of entries from a channel. The design calls for the pagination to be both top and bottom but outside of the div tag that is wrapping the list of entries. Is there a way to do the pagination outside of the channel tag pair.
Also there is a image that is dividing the entries but I don’t need it to show after the last one. It has to be dynamic enough that if there is only 2 entries instead of 4 it is not shown after the second one. Is there a way to do that?
Here is a basic layout in case that did not make sense.
<div id="page">Page 1 of 2</div>
<div id="project_background">
{exp:channel:entries channel="projects" limit="4" paginate="both"}
<div class="project">
Text stuff here
</div>
thinline.png
<div class="project">
Text stuff here
</div>
thinline.png
<div class="project">
Text stuff here
</div>
thinline.png
<div class="project">
Text stuff here
</div>
{/exp:channel:entries}
</div>
<div id="page">Page 1 of 2</div>Any help would be great.