Add basic deadline to sections index

This commit is contained in:
Charlotte Van Petegem 2025-05-25 21:54:34 +02:00
parent 782355322e
commit f4106b9fb6
Signed by: chvp
SSH key fingerprint: SHA256:s9rb8jBVfdahqWHuBAcHCBP1wmj4eYQXZfqgz4H3E9E
15 changed files with 175 additions and 1 deletions

View file

@ -5,6 +5,7 @@ import initPoliticianQuestions from './politicians_answer.js'
import initAcrosticQuestions from './acrostic_answer.js'
import initConnectionsQuestions from './connections_answer.js'
import initLyricsQuestions from './lyrics_answer.js'
import initDeadlineDisplay from './deadline_display.js'
import { Sortable, Swap } from 'sortablejs'
@ -17,4 +18,5 @@ addEventListener("DOMContentLoaded", () => {
initAcrosticQuestions()
initConnectionsQuestions()
initLyricsQuestions()
initDeadlineDisplay()
})