timconspicuous.neocities.org

Fixed typos, changed header for card back

+6 -3
+2 -2
README.md
··· 18 18 19 19 To serve your static files to a live server, use: 20 20 21 - deno task lune -s 21 + deno task lume -s 22 22 23 23 To deploy to Neocities, use: 24 24 25 25 deno task deploy 26 26 27 - Don't forget to create a `.env` file with the environment variabbles `NEOCITIES_SITE_NAME` and `NEOCITIES_PASSWORD`! 27 + Don't forget to create a `.env` file with the environment variables `NEOCITIES_SITE_NAME` and `NEOCITIES_PASSWORD`! 28 28 29 29 ## Tangled CI workflow 30 30
+4 -1
src/scripts/tarot.js
··· 387 387 // Update the content title 388 388 const contentTitle = document.getElementById("content-title"); 389 389 if (contentTitle) { 390 - contentTitle.textContent = `${currentCard.id}: ${currentCard.name}`; 390 + if (currentCard.id != "back") 391 + contentTitle.textContent = `${currentCard.id}: ${currentCard.name}`; 392 + else 393 + contentTitle.textContent = "About" 391 394 } 392 395 393 396 // Show the current card's content