Players can play touch football with different types of ball, which may change every 30 seconds (e.g. a basketball, a football, a soccer ball, etc). Players then progress to different types of tag game, including chain tag.
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);
}
});