We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10e4ff6 commit a8e014fCopy full SHA for a8e014f
docs/instructor_material/slides.js
@@ -194,6 +194,12 @@ function populateSlideContent() {
194
if (config.slides?.slide5) {
195
const slide5 = config.slides.slide5;
196
197
+ // Update WiFi details
198
+ const wifiDetails = document.getElementById('wifi-details');
199
+ if (wifiDetails && slide5.wifi_details) {
200
+ wifiDetails.textContent = slide5.wifi_details;
201
+ }
202
+
203
// Update repository link
204
const repoLink = document.getElementById('repo-link');
205
if (repoLink && slide5.repository_link) {
@@ -242,6 +248,7 @@ function populateSlideContent() {
242
248
reminder.innerHTML = `<p><strong>${slide6.reminder_text}</strong></p>`;
243
249
}
244
250
251
245
252
246
253
247
254
// Resolve template variables (simple implementation)
0 commit comments