Mad Trivia Party

Weekly Site Update Cheat Sheet — for collaborators

Step 1 — Log into Neocities

  1. Go to neocities.org and log in
  2. You'll see the file dashboard for madtriviaparty
  3. Click on index.html to open the code editor

Step 2 — Update the Questions

Two ways to do this — pick whichever feels easier:

Alternative — Edit HTML Directly

  1. In the Neocities editor, search for QUESTIONS START
  2. Update the panelist name in this line (replace Dan with the correct name):
<p class="byline">Questions by <strong>Dan</strong></p>
  1. Replace the questions list below it — one <li> per question:
<ul class="questions-list"> <li>Your first question goes here?</li> <li>Your second question goes here?</li> <li>Your third question goes here?</li> </ul>
  1. Hit Save

Step 3 — Verify

  1. Visit madtriviaparty.neocities.org to confirm everything looks right
  2. Done!

After the Show — Reset the Page

To restore the placeholder until next week, replace everything between the comment markers with this:

<p class="byline">Questions by <strong>[Name]</strong></p> <ul class="questions-list"> <li>Questions will be posted here each Tuesday before the show.</li> </ul>

Hit Save and the page is reset for next week.

Updating the Zoom Link

If the Zoom link ever changes, search in index.html for:

zoom-link').href

Replace the URL in that line with the new Zoom link:

document.getElementById('zoom-link').href = 'https://zoom.us/j/yournumber';