A: 

In keeping with the duct tape approach, you could use CSS to move the Pager below your content.

#div-that-holds-pager-and-content {
position: relative;
padding-bottom: 50px;
}

#div-that-holds-pager {
position: absolute;
bottom: 10px;
}
Finbarr
Yes, of course that option crossed my mind (going with the duct tape thing :), but i would really like to solve it in a more "proper" way, as i thought that i would also learn something from it. However, if nothing better comes up, that sort of sollution would probably be an option.
andersandersson666
A: 

As Nikit suggested, I would recommend using the views module to create your list. You can use an argument to select the appropriate taxonomy term from the path. That way you've got the functionality you want without the need to write and maintain code.

doana

related questions