Three shooters will start at any location around the 3PT line with two defenders. The offense begins with two basketballs. Offense and defense stay in their same roles continuously for 60 seconds. The offense can only shoot threes, but can move, drive and pass. The defense attempts to block shots and steal passes.
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);
}
});