loadPosts(); /* ===== SECRET TERMINAL ===== */ const consoleDiv = document.getElementById("console"); const consoleInput = document.getElementById("consoleInput"); document.addEventListener("keydown",(e)=>{ if( e.ctrlKey && e.shiftKey && e.key.toLowerCase() === "a" ){ consoleDiv.style.display = "block"; consoleInput.focus(); } }); consoleInput.addEventListener("keydown",(e)=>{ if(e.key === "Enter"){ if(consoleInput.value === "limeworld"){ window.location.href = "admin.html"; } else{ alert("ACCESS DENIED 💀"); } } });