Skip to content

Commit 5d6ecae

Browse files
authored
fix(speakers): readd talk links to speaker page to fix "featured" nonstarter from Pretalx (#15004)
Signed-off-by: Laura Santamaria <nimbinatus@users.noreply.github.com>
1 parent d634c79 commit 5d6ecae

1 file changed

Lines changed: 6 additions & 9 deletions

File tree

content/events/2025-austin/speakers.md

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ Type = "speakers"
44
Description = "Meet our speakers for DevOpsDays Austin 2025"
55
+++
66

7-
8-
<h2>Review some of the talks from these speakers as we finalize details!</h2>
9-
<h3><a href="https://talks.devopsdays.org/devopsdays-austin-2025/featured/">Explore the featured talks here.</a></h3>
107
<div id="speakers" class="row"></div>
118
<noscript>
129
<div class="pretalx-widget">
@@ -36,21 +33,21 @@ Description = "Meet our speakers for DevOpsDays Austin 2025"
3633
let pic = document.createElement('img');
3734
let bio = document.createElement('details');
3835
bio.className = `p-1`;
39-
//let talk = document.createElement('a');
36+
let talk = document.createElement('a');
4037

4138
name.innerHTML = `${speaker.name}`;
4239
pic.src = speaker.avatar.length != 0 ? `${speaker.avatar}`: '/img/speaker-default.jpg';
4340
pic.className = `speakers-page`;
4441
bio.innerHTML = `<summary><b>About ${speaker.name}</b></summary><p>${speaker.biography ? `${speaker.biography}`: `Ipsum`}</p>`;
45-
//talk.setAttribute('href', speaker.submissions[0] ? `https://talks.devopsdays.org/devopsdays-austin-2025/talk/${speaker.submissions[0]}` : ``);
46-
//talk.setAttribute('target', '_blank');
47-
//talk.className = `btn btn-primary`;
48-
//talk.innerHTML = `Link to talk`;
42+
talk.setAttribute('href', speaker.submissions[0] ? `https://talks.devopsdays.org/devopsdays-austin-2025/talk/${speaker.submissions[0]}` : ``);
43+
talk.setAttribute('target', '_blank');
44+
talk.className = `btn btn-primary`;
45+
talk.innerHTML = `Link to talk`;
4946

5047
li.appendChild(name);
5148
li.appendChild(pic);
5249
li.appendChild(bio);
53-
//li.appendChild(talk);
50+
li.appendChild(talk);
5451
list.appendChild(li);
5552
});
5653
})

0 commit comments

Comments
 (0)