Players work in groups of three with one player designated as the defender, one as the escaper and one as the shield. The shield is the only player without a basketball, whose job is to protect the escaper from getting the basketball stolen from the defender.
document.addEventListener('DOMContentLoaded', function() {
const pagination = document.querySelector('.navigation');
const postsContainer = document.querySelector('.postloopcontainer');
if (pagination && postsContainer) {
// Ensure we move the pagination after the last post
postsContainer.parentNode.insertBefore(pagination, postsContainer.nextSibling);
}
});