Skip to content

Commit e594311

Browse files
Update weeklycontent.html
1 parent 8c6be12 commit e594311

File tree

1 file changed

+10
-13
lines changed

1 file changed

+10
-13
lines changed

weeklycontent.html

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
2+
13
<!DOCTYPE html>
24
<html lang="en">
35
<head>
@@ -2717,22 +2719,17 @@ <h3>C Unions Basics:</h3>
27172719
<div class="quiz-feedback"></div> </div>
27182720
</div>
27192721
</div>
2720-
<div id="saturday-content-week6" class="day-content day-section">
2721-
<p style="text-align: center; font-style: italic; color: #555;">QUIZ IS LIVE!</p>
2722-
<button style="display: block; margin: 0 auto;" onclick="quiz.html">Brain Cache Quiz</button>
27232722

27242723
</div> <!-- add week6 content before these -->
27252724
<div id="week7" class="week-content">
2726-
<p style="text-align: left; font-weight: bold; font-size: 18px; margin-bottom: 10px; color: #00408f;">
2725+
<p style="text-align: left; font-weight: bold; font-size: 18px; margin-bottom: 10px; color: #00408f;">
27272726
Mindmash
27282727
</p>
27292728
<div class="nested-tab-nav">
27302729
<button class="tab-button" onclick="showDay('monday-content-week7', this, 'week7')">Quiz 1</button>
27312730
</div>
27322731

27332732
<div id="monday-content-week7" class="day-content day-section">
2734-
<p style="text-align: left; font-weight: bold; font-size: 18px; margin-bottom: 10px; color: #00408f;">
2735-
Section under construction!</p>
27362733
<div class="content-block">
27372734
<h3>1. What are header files in C programming?</h3>
27382735
<ol>
@@ -3187,17 +3184,17 @@ <h3>25. Why is `fgets()` used for reading the student name instead of `scanf("%s
31873184
// --- CONTROL KEYWORD HERE ---
31883185
// Define a variable to store the ID of the disabled week
31893186
// Set this to the week you want to disable (e.g., 'week4', 'week2', or null if no week is disabled)
3190-
let disabledWeekId = 'null'; // Changed from 'null' to null to ensure no week is disabled
3187+
let disabledWeekId = null; // Changed from 'null' to null to ensure no week is disabled
31913188

31923189
// Define an array of disabled days for a given week (e.g., ['tuesday', 'thursday'] for week1)
31933190
const disabledDays = {
31943191
// Uncomment these lines and specify days if you want to disable specific days within weeks
3195-
// 'week1': ['monday','tuesday','wednesday','thursday','friday'], // Example: disabled days for Week 1
3196-
// 'week2': ['monday','tuesday','wednesday','thursday','friday'],
3197-
// 'week3': ['monday','tuesday','wednesday','thursday','friday'],
3198-
// 'week4': ['monday','tuesday','wednesday','thursday','friday'],
3199-
// 'week5': ['monday','tuesday','wednesday','thursday','friday'],
3200-
// 'week6': ['monday','tuesday','wednesday','thursday','friday'],
3192+
// 'week1': [], // Example: No disabled days for Week 1
3193+
// 'week2': [],
3194+
// 'week3': [],
3195+
// 'week4': [],
3196+
// 'week5': [],
3197+
// 'week6': [],
32013198
// 'week7': [], // Mindmash - no disabled days here for now
32023199
};
32033200
// --- END CONTROL KEYWORD ---

0 commit comments

Comments
 (0)