Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

1 thought on “Hello world!”

Leave a Comment

Your email address will not be published. Required fields are marked *

document.addEventListener('click', function (event) { const button = event.target.closest('.pg-play-button'); if (!button) return; const container = button.closest('.pg-game-embed'); const src = button.getAttribute('data-game-src'); if (!container || !src) return; const iframe = document.createElement('iframe'); iframe.src = src; iframe.title = button.getAttribute('data-game-title') || 'Papa’s Game'; iframe.loading = 'lazy'; iframe.allowFullscreen = true; iframe.setAttribute('allow', 'fullscreen'); iframe.setAttribute('referrerpolicy', 'strict-origin-when-cross-origin'); iframe.className = 'pg-game-iframe'; container.innerHTML = ''; container.appendChild(iframe); });
Scroll to Top