Evolved Word Reveal

Like Wordle, but we're just not calling it that...

Evolved Word Reveal

Word Reveal is a word deduction game where players have six attempts to guess a hidden word (whose meaning is relevant in energy research). With each guess, players receive feedback to indicate which letters are correct and in the right position, which are correct but misplaced, and which do not appear in the word at all. Using logic and vocabulary skills, players refine their guesses until the word is revealed.

Word 10

Word 9

Word 8

Word 7

Word 6

Word 5

Word 4

Word 3

Word 2

Word 1

// Only display excerpt in emails (function() { // This runs only when Ghost is preparing emails if (document.querySelector('html.kg-email-template')) { // Find all article content const articleContent = document.querySelectorAll('.kg-card:not(.kg-card-begin)'); // Remove all content cards except the first few (which serve as excerpt) for (let i = 3; i < articleContent.length; i++) { articleContent[i].style.display = 'none'; } // Add a "Read More" button const readMoreBtn = document.createElement('div'); readMoreBtn.innerHTML = 'Read Full Post'; document.querySelector('.kg-email-body').appendChild(readMoreBtn); } })();