diff --git a/index.html b/index.html index be8763b..4dadf3f 100644 --- a/index.html +++ b/index.html @@ -18,6 +18,7 @@ Games Utilities Interesting + Daily

diff --git a/js/data.js b/js/data.js index eec1d18..0077f04 100644 --- a/js/data.js +++ b/js/data.js @@ -67,10 +67,28 @@ const websites = [ url: "https://www.rottentomatoes.com/movie-trivia/", category: ["games", "daily"], brief: "Daily rotten-tomatoes provided movie guessing game. Not tooooooo hard." + }, + { + name: "Box Office Game", + url: "https://boxofficega.me/", + category: ["games", "daily"], + brief: "Daily game where you have to guess the top 5 highest grossing movies from a particular week in time using various clues." + }, + { + name: "Universal Crossword", + url: "http://syndication.andrewsmcmeel.com/puzzles/crosswords", + category: "games", + brief: "Really good crossword website, with clues that border on cryptic and regular (they are not cryptic, rather creative)." + }, + { + name: "Simple Daily Puzzles", + url: "https://simplydailypuzzles.com/index.html", + category: ["games", "daily"], + brief: "Mainly like this for the daily cryptic, but has a variety of puzzles (crossword, sudoku, etc.) that are updated...daily." } - + // { diff --git a/js/script.js b/js/script.js index d270eb9..f74e328 100644 --- a/js/script.js +++ b/js/script.js @@ -6,6 +6,7 @@ function displayWebsites(category) { category === 'all' ? true : Array.isArray(website.category) ? website.category.includes(category) : website.category === category ); + filteredWebsites.sort((a, b) => a.name.localeCompare(b.name)); filteredWebsites.forEach(website => { const item = document.createElement('div'); diff --git a/pages/interesting.html b/pages/interesting.html index ec58256..75f8e64 100644 --- a/pages/interesting.html +++ b/pages/interesting.html @@ -20,4 +20,4 @@ document.addEventListener('DOMContentLoaded', () => displayWebsites('interesting')); -